:root { --bg: linear-gradient(90deg, #0d1f14 0%, #16381f 50%, #0b140d 100%); --fg: #e8f5e9; --accent: #66bb6a; --muted: #1f2a22; --primary: #1b5e20; }
* { box-sizing: border-box; }
html { height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; margin: 0; font-family: "Rubik", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; background: var(--bg); color: var(--fg); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
.site-header { top: 0; z-index: 10; color: #fff; background: var(--primary);}
.logo { font-weight: 700; letter-spacing: 0.5px; color: #fff; }
.main-wd{
    max-width: 1320px;
    margin:0 auto;
    display:flex; align-items:center; justify-content:space-between; padding:4px 24px; position: sticky;
}
.m-10{margin: 10px 0;}
.org{color:rgb(222, 144, 1);}
.fs-50{font-size: 50px;}
.white{color: #fff;}
.nav a { color: #fff; text-decoration: none; margin-left: 16px; padding: 8px 12px; border-radius: 6px; }
.nav a:hover { background: rgba(102, 187, 106, 0.18); }
.nav a.active { background: var(--accent); color: #111; }
main { flex: 1; width: 100%; max-width: 1320px; margin: 0 auto; padding: 24px; min-height: 500px; }
.section { display: none; animation: fade 200ms ease-in; }
.section.active { display: block; }
.cta-button { background: var(--accent); color: #111; border: none; padding: 12px 20px; border-radius: 8px; cursor: pointer; text-decoration: none; display: inline-block; font-weight: 500; }
.cta-button:hover { filter: brightness(1.1); box-shadow: 0 4px 12px rgba(102, 187, 106, 0.3); }
.site-footer { max-width: 960px; margin: 0 auto; padding: 16px 0; opacity: 0.9; border-top: 1px solid var(--muted); }
.contact-page {
    background-image: linear-gradient(rgba(13, 31, 20, 0.85), rgba(13, 31, 20, 0.85)), url('image/sportzbee.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 400px;
    background-attachment: fixed;
}
h3{
  background: #214323;
    padding: 10px;
}
ul#sports-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
ul#sports-list li { background: var(--muted); border-radius: 8px; padding: 12px; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
 .hero { display: grid; grid-template-columns: 1fr 520px; gap: 24px; align-items: center; }
 .hero-text h1 { margin-top: 0; font-size: 50px;}
 .hero-image { width: 100%; height: auto; border-radius: 12px; object-fit: cover; }
 .carousel { width: 100%; overflow: hidden; border-radius: 12px; box-shadow: 0 6px 24px rgba(0,0,0,0.35); background: var(--muted); }
 .carousel-track { display: flex; transition: transform 300ms ease; }
 #chesstournament img{ height:100%;}
 #chesstournament .carousel{ height: 100%;}
 .carousel-track img { flex: 0 0 33.3333%; width: 50%; height: auto; padding:10px;}
 .carousel-section { margin-top: 24px; }
 ul#tournament-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
 ul#tournament-list li { background: var(--muted); border-radius: 8px; padding: 14px; }
 #event-banner { margin-top: 12px; padding: 16px; border-radius: 12px; background: rgba(102,187,106,0.12); border: 1px solid var(--muted); }
 #event-date { font-weight: 700; letter-spacing: 0.4px; }
 #event-status { margin-top: 6px; opacity: 0.9; }
 .event-images { margin-top: 12px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
 .event-images img { width: 100%; height: auto; border-radius: 12px; object-fit: cover; background: var(--muted); }
 @media (max-width: 720px) {
   .hero { grid-template-columns: 1fr; }
   .hero-image { justify-self: end; max-width: 100%; }
 }
