/* =====================================================
   GLOBAL STRUCTURE
===================================================== */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Dashboard wrapper uses sidebar shift on desktop */
.main-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-left: 240px;
}

.dashboard-container {
  flex: 1;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}
.logo-wrapper {
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo {
  height: 38px;
  width: auto;
  display: block;
}

/* =====================================================
   MARKETING NAVBAR
===================================================== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  left: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 48px;

  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.nav-logo {
  height: 45px;
  width: auto;
  display: block;
}

.brand {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

/* Marketing nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.nav-btn:hover {
  opacity: 0.95;
}

/* Mobile menu button for marketing pages */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  cursor: pointer;
}

/* =====================================================
   DASHBOARD NAVBAR
===================================================== */

.dashboard-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 30px;

  background: #0F172A;
  border-bottom: 1px solid var(--border);

  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-main);
  cursor: pointer;
  display: none;
}

.dashboard-navbar .logo-section {
  color: var(--text-main);
}

.dashboard-navbar .nav-logo {
  height: 38px;
}

.dashboard-navbar .brand {
  font-size: 17px;
  font-weight: 600;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-user {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;

  width: 240px;
  height: 100%;

  background: #0F172A;
  padding: 80px 20px 20px;

  border-right: 1px solid var(--border);

  display: flex;
  flex-direction: column;
  gap: 20px;

  z-index: 1000;
}

.sidebar.active {
  left: 0;
}

.sidebar-link {
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  cursor: pointer;

  color: var(--text-main);
  padding: 8px 0;
}

.sidebar-link:hover {
  color: var(--primary);
}

.sidebar-link.active {
  color: var(--primary);
}

/* =====================================================
   OVERLAY
===================================================== */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* =====================================================
   FOOTER FIXED VERSION
===================================================== */

.footer {
  background: #0B0F14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.footer-left {
  max-width: 420px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo-wrapper {
  background: #ffffff;
  padding: 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 40px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.footer-column h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: 0.2s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: var(--text-muted);
}

/* Mobile footer */

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}


/* =====================================================
   RESPONSIVE
===================================================== */

/* Tablets */
@media (max-width: 1024px) {
  .navbar {
    padding: 16px 24px;
  }

  .sidebar {
    width: 220px;
  }

  .main-wrapper {
    margin-left: 220px;
  }
}

/* Marketing mobile nav */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .navbar {
    padding: 14px 18px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    gap: 14px;

    padding: 16px 18px;

    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}

/* Dashboard mobile */
@media (max-width: 900px) {
  .menu-btn {
    display: block;
  }

  .sidebar {
    left: -240px;
  }

  .sidebar.active {
    left: 0;
  }

  .main-wrapper {
    margin-left: 0;
  }

  .dashboard-navbar {
    padding: 14px 18px;
  }

  .nav-user {
    display: none;
  }
}

/* Small phones */
@media (max-width: 600px) {
  .brand {
    font-size: 16px;
  }

  .dashboard-container {
    padding: 15px;
  }
}

/* Very small */
@media (max-width: 480px) {
  .sidebar {
    width: 200px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    gap: 30px;
  }
}
.section-subtitle{
  max-width:780px;
  margin:0 auto 28px;
  text-align:center;
  opacity:0.85;
  line-height:1.6;
  }
  
  .sport-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:22px;
  }
  
  .sport-card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  border-radius:14px;
  padding:18px;
  }
  
  .sport-icon{
  font-size:26px;
  margin-bottom:10px;
  }
  
  @media (max-width: 900px){
  .sport-grid{
  grid-template-columns:repeat(2, 1fr);
  }
  }
  
  @media (max-width: 600px){
  .sport-grid{
  grid-template-columns:1fr;
  }
  }