/* Mobile navbar + hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
  margin-left: auto;
  margin-right: 0.5rem;
  padding: 0;
}

.hamburger .bar {
  display: block;
  width: 26px;
  height: 3.5px;
  margin: 3.5px 0;
  background: #00E0FF;
  border-radius: 2px;
  transition: 0.3s;
  box-shadow: 0 0 6px #00E0FF;
}

@media (max-width: 900px) {
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.7rem 0.8rem;
    height: 56px;
    min-height: 56px;
  }

  .navbar .logo-hamburger-group {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    gap: 0.6rem;
  }

  .navbar .logo {
    margin: 0;
    text-align: left;
    font-size: 1.3rem;
    padding-left: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.1rem;
    background: var(--secondary-bg);
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100vw;
    box-shadow: 0 8px 32px #000a;
    z-index: 150;
    padding: 1.2rem 0;
    border-bottom: 1.5px solid var(--neon-purple);
  }

  .nav-links.open {
    display: flex;
  }
}
/* See All Tournaments link mobile styles - match clubs */
.see-all-tournaments-link {
  display: block;
  width: fit-content;
  margin: 1.2rem auto 0.2rem auto;
  font-size: 1.05rem;
  text-align: center;
  color: #00E0FF;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.18s, text-shadow 0.18s;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.see-all-tournaments-link:hover,
.see-all-tournaments-link:active,
.see-all-tournaments-link:focus {
  color: #7B00FF;
  text-shadow: 0 0 8px #7B00FF;
  text-decoration: underline;
}
/* mobile.css - Mobile-specific responsive styles for Khelbo */

@media (max-width: 900px) {
  /* Navbar adjustments */
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1.05rem;
    padding: 0;
  }
  
  /* Hero Responsive */
  .hero {
    padding: 2rem 1rem;
    min-height: auto;
  }
  .hero-content {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-left {
    max-width: 100%;
    text-align: center;
  }
  .hero-badge {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-align: center;
  }
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .hero-cta-btn {
    width: 100%;
    padding: 1rem 1.5rem;
  }
  .hero-opening-hours {
    align-items: center;
  }
  .hero-right {
    justify-content: center;
  }
  .hero-image-container {
    max-width: 100%;
  }
  .hero-sponsors {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  .sponsor-logo {
    font-size: 0.75rem;
  }
  .hero-tagline {
    font-size: 0.9rem;
    bottom: -30px;
  }
  
  .tournament-card, .club-card, .stream-placeholder, .live-stream {
    min-width: 98vw;
    max-width: 100vw;
    width: 100vw;
    box-sizing: border-box;
    padding: 1.1rem 0.4rem;
    margin: 0 auto 1.2rem auto;
    border-radius: 1.2rem;
  }
  .carousel, .clubs-list, .streams-list {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    width: 100vw;
    padding: 0;
  }
  .top-leaderboard-news-section {
    padding: 1.1rem 0 1.1rem 0;
  }
  .top-leaderboard-box, .latest-news-box {
    padding: 1.1rem 0.4rem 1.1rem 0.4rem;
    min-width: 0;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    border-radius: 1.2rem;
  }
  .news-marquee-outer {
    height: 120px;
    width: 100vw;
    box-sizing: border-box;
  }
  .news-card {
    font-size: 1.01rem;
    padding: 1rem 0.7rem;
    border-radius: 1rem;
  }
  .centered-info-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
    width: 100vw;
    padding: 0 0.2rem;
  }
  .centered-info-card {
    width: 100vw;
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }
  .footer {
    padding: 2rem 1rem 1rem 1rem;
    width: 100vw;
    box-sizing: border-box;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-section:first-child {
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
  .footer-heading {
    font-size: 0.9rem;
  }
  .footer-links li a {
    font-size: 0.85rem;
  }
  .see-all-clubs-link, .see-all-tournaments-link {
    display: block;
    width: fit-content;
    margin: 1.2rem auto 0.2rem auto;
    font-size: 1.08rem;
    text-align: center;
    right: unset;
    left: unset;
    bottom: unset;
    padding: 0.5rem 1.2rem;
    border-radius: 0.7rem;
  }
  .see-all-news-link-bottom {
    font-size: 1.01rem;
    margin-left: 0.2rem;
    right: 0.2rem;
    bottom: 0.2rem;
    padding: 0.4rem 1rem;
    border-radius: 0.7rem;
  }
  .live-badge {
    top: 0.2rem;
    left: 0.2rem;
    font-size: 0.92rem;
    padding: 0.18em 0.7em;
    border-radius: 1em;
  }
  .live-video-label {
    font-size: 1.01rem;
  }
  .live-video-box iframe {
    width: 100vw !important;
    height: 32vw !important;
    min-height: 120px;
    max-height: 180px;
    border-radius: 0.7rem;
  }
  .stat-float {
    font-size: 1.5rem !important;
  }
  .top-player-card .player-name, .news-card .news-title {
    font-size: 1.01rem;
  }
  .top-leaderboard-title, .latest-news-title {
    font-size: 1.12rem;
  }
  .player-avatar, .club-logo {
    width: 40px !important;
    height: 40px !important;
  }
  .top-player-card {
    padding: 1rem 0.7rem;
    gap: 0.7rem;
    border-radius: 1rem;
  }
  .news-card {
    gap: 0.22rem;
  }
  .navbar .logo {
    font-size: 1.3rem;
  }
  .nav-links li a {
    font-size: 1.01rem;
    padding: 0.4em 0.8em;
    border-radius: 0.7rem;
  }
  .hud-stats {
    min-width: 0 !important;
    padding: 1rem 0.4rem 1rem 0.4rem !important;
    border-radius: 1.2rem;
  }
  .stat-float-wrapper {
    padding: 0.3rem 0;
  }
}


/* Extra tweaks for very small screens */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .hero-sponsors {
    gap: 1rem;
  }
  .sponsor-logo {
    font-size: 0.7rem;
  }
  .top-leaderboard-title, .latest-news-title {
    font-size: 1.1rem;
  }
  .top-player-card .player-name, .news-card .news-title {
    font-size: 0.95rem;
  }
}
