/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; background: #000; color: #fff; min-height: 100vh; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* Utilities */
.bg-black { background: #000; }
.text-white { color: #fff; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.h-16 { height: 4rem; }
.hidden { display: none; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-xs { font-size: 0.75rem; }
.hover\:underline:hover { text-decoration: underline; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }

/* Header */
header { position: sticky; top: 0; z-index: 50; }
.header-top { background: #000; overflow-x: auto; }
.header-top::-webkit-scrollbar { display: none; }
.header-main { background: #EFFA24; }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-left { display: flex; align-items: center; }
.logo-text { font-weight: 700; font-size: 1.25rem; color: #000; padding: 0 1rem; }
.logo-box { height: 64px; width: 56px; background: #000; display: flex; align-items: center; justify-content: center; }
.logo-box img { width: 35px; height: 35px; }

/* Navigation */
.nav-menu { display: none; align-items: center; gap: 1.5rem; }
.nav-link { font-weight: 500; font-size: 0.875rem; color: #000; transition: opacity 0.2s; display: flex; align-items: center; gap: 0.25rem; }
.nav-link:hover { opacity: 0.7; }
.header-right { display: flex; align-items: center; gap: 0.5rem; }

/* Schedule Bar */
.schedule-bar { display: flex; gap: 0; }
.schedule-item { flex-shrink: 0; padding: 0.5rem 1rem; border-right: 1px solid #27272a; display: flex; align-items: center; gap: 0.75rem; }
.schedule-date { text-align: center; }
.schedule-date .day { font-size: 1.25rem; font-weight: 700; }
.schedule-date .month { font-size: 0.75rem; color: #a1a1aa; }
.schedule-info { font-size: 0.75rem; }
.schedule-info .title { font-weight: 500; }
.schedule-info .subtitle { color: #a1a1aa; }
.schedule-info .status { font-weight: 700; }
.schedule-info .status.live { color: #facc15; }
.schedule-info .status.upcoming { color: #ef4444; }

/* Buttons */
.register-btn { background: #EFDB00; color: #000; font-weight: 700; padding: 0.625rem 1.5rem; border: none; border-radius: 4px; clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%); animation: btnPulse 4s infinite; position: relative; overflow: hidden; display: none; }
.register-btn-mobile { background: #EFDB00; color: #000; font-weight: 700; padding: 0.5rem 1rem; border: none; border-radius: 4px; font-size: 0.875rem; }
.mobile-menu-btn { background: transparent; border: none; padding: 0.5rem; }
.mobile-menu-btn svg { color: #000; }

@keyframes btnPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 5px rgba(239, 219, 0, .3); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px rgba(239, 219, 0, .5); }
}

/* Form Styles (Register Page) */
.form-container { min-height: 100vh; background: #000; padding-bottom: 3rem; }
.back-link { display: inline-flex; align-items: center; color: #EFFA24; text-decoration: none; padding: 1.5rem; transition: color 0.3s; }
.back-link:hover { color: #ffe500; }
.form-card { background: #18181b; border-radius: 0.5rem; padding: 2rem; max-width: 600px; margin: 0 auto; }
.form-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: #fff; text-align: center; }
.form-subtitle { color: #a1a1aa; font-size: 0.875rem; margin-bottom: 2rem; text-align: center; line-height: 1.6; }
.form-subtitle strong { color: #EFFA24; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; color: #fff; margin-bottom: 0.5rem; font-weight: 500; }
.required { color: #ef4444; }
.form-input, .form-select { width: 100%; padding: 0.75rem 1rem; background: #000; border: 1px solid #3f3f46; border-radius: 4px; color: #fff; font-size: 1rem; transition: border-color 0.3s; }
.form-input:focus, .form-select:focus { outline: none; border-color: #EFFA24; }
.form-input::placeholder { color: #71717a; }

.phone-wrapper { display: flex; }
.country-code { flex-shrink: 0; width: 90px; padding: 0.75rem 0.5rem; background: #000; border: 1px solid #3f3f46; border-right: none; border-radius: 4px 0 0 4px; color: #fff; cursor: pointer; }
.phone-input { flex: 1; border-radius: 0 4px 4px 0 !important; }

.device-buttons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
.device-btn { padding: 0.75rem 1rem; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.device-btn.active { background: #EFFA24; color: #000; }
.device-btn:not(.active) { background: #27272a; color: #fff; }
.device-btn:not(.active):hover { background: #3f3f46; }

.help-text { font-size: 0.75rem; color: #71717a; margin-top: 0.25rem; }
.btn-group { display: flex; gap: 1rem; margin-top: 2rem; }
.btn { flex: 1; padding: 1rem; border: none; border-radius: 4px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.btn-primary { background: #EFFA24; color: #000; box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.75); }
.btn-primary:hover { background: #ffe500; transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-secondary { background: #27272a; color: #fff; }
.btn-secondary:hover { background: #3f3f46; }

/* Team Dropdown */
.team-dropdown { position: relative; }
.team-btn { width: 100%; padding: 0.75rem 1rem; background: #000; border: 1px solid #3f3f46; border-radius: 4px; color: #71717a; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.team-btn.selected { color: #fff; }
.team-list { position: absolute; top: 100%; left: 0; right: 0; background: #000; border: 1px solid #3f3f46; border-radius: 4px; max-height: 250px; overflow-y: auto; z-index: 50; display: none; }
.team-list.show { display: block; }
.team-search { width: 100%; padding: 0.75rem; background: #18181b; border: none; border-bottom: 1px solid #3f3f46; color: #fff; }
.team-search::placeholder { color: #71717a; }
.team-item { padding: 0.75rem 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #27272a; }
.team-item:hover { background: #27272a; }
.team-item.disabled { opacity: 0.5; cursor: not-allowed; }
.team-item .slots { font-size: 0.75rem; color: #71717a; }
.team-item .full-badge { background: #ef4444; color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 0.625rem; }

/* OTP Input */
.otp-container { display: flex; gap: 0.5rem; justify-content: center; margin: 2rem 0; }
.otp-input { width: 50px; height: 60px; text-align: center; font-size: 1.5rem; font-weight: 700; background: #000; border: 2px solid #3f3f46; border-radius: 8px; color: #fff; transition: border-color 0.3s; }
.otp-input:focus { outline: none; border-color: #EFFA24; }
.otp-input.filled { border-color: #22c55e; }
.timer-section { margin: 1.5rem 0; text-align: center; }
.countdown { color: #71717a; font-size: 0.875rem; }
.countdown strong { color: #EFFA24; }
.resend-link { color: #EFFA24; text-decoration: none; font-size: 0.875rem; cursor: pointer; }
.resend-link:hover { text-decoration: underline; }
.resend-link.disabled { color: #71717a; cursor: not-allowed; }

/* Data Summary & Details */
.data-summary { background: #000; border: 1px solid #3f3f46; border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem; text-align: left; }
.data-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #27272a; }
.data-row:last-child { border-bottom: none; }
.data-label, .detail-label { color: #71717a; font-size: 0.875rem; }
.data-value, .detail-value { color: #fff; font-size: 0.875rem; font-weight: 500; }
.data-value.highlight, .detail-value.highlight { color: #EFFA24; }
.detail-card { background: #000; border: 1px solid #3f3f46; border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; text-align: left; }
.detail-header { display: flex; align-items: center; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #27272a; }
.detail-icon { width: 40px; height: 40px; background: rgba(239, 250, 36, 0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-right: 1rem; }
.detail-icon svg { color: #EFFA24; }
.detail-title { font-weight: 600; color: #fff; }
.detail-subtitle { font-size: 0.75rem; color: #71717a; }
.detail-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #27272a; }
.detail-row:last-child { border-bottom: none; }

/* Status & Success */
.verify-icon { margin: 0 auto 1.5rem; width: 80px; height: 80px; background: linear-gradient(135deg, #EFFA24 0%, #ffe500 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.verify-icon svg { color: #000; }
.success-icon { width: 100px; height: 100px; margin: 0 auto 1.5rem; }
.success-circle { width: 100%; height: 100%; border-radius: 50%; background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%); display: flex; align-items: center; justify-content: center; animation: scaleIn 0.5s ease-out; }
.checkmark { color: #fff; font-size: 48px; }
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.status-badge { display: inline-flex; align-items: center; background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #22c55e; padding: 0.5rem 1rem; border-radius: 50px; font-weight: 600; font-size: 0.875rem; margin-bottom: 1.5rem; }
.status-dot { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; margin-right: 0.5rem; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.tournament-info { background: linear-gradient(135deg, rgba(239, 250, 36, 0.1) 0%, rgba(239, 250, 36, 0.05) 100%); border: 1px solid rgba(239, 250, 36, 0.3); border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; text-align: center; }
.tournament-title { font-size: 1.25rem; font-weight: 700; color: #EFFA24; margin-bottom: 0.5rem; }
.tournament-date { color: #a1a1aa; font-size: 0.875rem; }
.notice-box { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); border-radius: 8px; padding: 1rem; margin-bottom: 1.5rem; text-align: left; }
.notice-title { color: #ef4444; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; display: flex; align-items: center; }
.notice-title svg { margin-right: 0.5rem; }
.notice-text { color: #fca5a5; font-size: 0.75rem; line-height: 1.5; }

/* Loading & Confetti */
.loading-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.8); display: none; align-items: center; justify-content: center; z-index: 100; }
.loading-overlay.show { display: flex; }
.loading-box { background: #18181b; padding: 2rem; border-radius: 8px; text-align: center; }
.spinner { width: 48px; height: 48px; border: 4px solid #3f3f46; border-top-color: #EFFA24; border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.confetti { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1000; }
.confetti-piece { position: absolute; width: 10px; height: 10px; background: #EFFA24; animation: confettiFall 3s linear forwards; }
@keyframes confettiFall { 0% { transform: translateY(-100px) rotate(0deg); opacity: 1; } 100% { transform: translateY(100vh) rotate(720deg); opacity: 0; } }

/* Steps */
.step-content { display: none; }
.step-content.active { display: block; }
.step-indicator { display: flex; justify-content: center; margin-bottom: 2rem; padding: 0; gap: 0; }
.step-item { display: flex; align-items: center; }
.step-circle { width: 36px; height: 36px; border-radius: 50%; background: #27272a; color: transparent; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; transition: all 0.3s; }
.step-circle.active { background: #EFFA24; color: transparent; }
.step-circle.completed { background: #22c55e; color: #fff; }
.step-line { width: 40px; height: 3px; background: #27272a; transition: background 0.3s; }
.step-line.completed { background: #22c55e; }

/* Hero Section (Index) */
.hero-section { background: #000; padding: 1.5rem 0; }
.hero-card { background: rgba(0, 0, 0, 0.9); border: 1px solid rgba(63, 63, 70, 0.5); border-radius: 1rem; overflow: hidden; }
.hero-content { display: flex; flex-direction: column; }
.hero-left { background: linear-gradient(135deg, rgba(239, 250, 36, 0.2), transparent); padding: 1.5rem; display: flex; flex-direction: column; align-items: center; }
.tournament-logo { width: 128px; height: 128px; background: #EFFA24; border-radius: 1rem; display: flex; align-items: center; justify-content: center; position: relative; margin-bottom: 1rem; }
.tournament-logo img { width: 100px; height: 100px; object-fit: contain; border-radius: 0.5rem; }
.upcoming-badge { position: absolute; top: -8px; right: -8px; background: #ef4444; color: #fff; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.5rem; border-radius: 999px; animation: pulse 2s infinite; }
.hero-season { color: #EFFA24; font-weight: 700; font-size: 0.875rem; }
.hero-qualifier { color: #a1a1aa; font-size: 0.75rem; }
.hero-center { padding: 1.5rem; }
.hero-title { font-size: 1.5rem; font-weight: 700; background: linear-gradient(to right, #fff, #d4d4d8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1rem; }
.stat-item { display: flex; align-items: center; gap: 0.5rem; }
.stat-icon { color: #EFFA24; width: 20px; height: 20px; flex-shrink: 0; }
.stat-label { font-size: 0.75rem; color: #a1a1aa; }
.stat-value { font-size: 0.875rem; font-weight: 500; }
.register-now { display: flex; align-items: center; gap: 0.5rem; }
.register-dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: pulse 2s infinite; }
.register-text { color: #ef4444; font-weight: 500; font-size: 0.875rem; }
.hero-right { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.hero-upcoming { color: #EFFA24; font-size: 1.25rem; font-weight: 700; text-align: center; }
.hero-btn { width: 100%; padding: 0.75rem 1rem; border-radius: 4px; font-weight: 500; transition: all 0.3s; }
.hero-btn-outline { background: transparent; border: 1px solid #EFFA24; color: #EFFA24; }
.hero-btn-outline:hover { background: #EFFA24; color: #000; }
.hero-btn-primary { background: #EFDB00; border: none; color: #000; font-weight: 700; }

/* Carousel Section (Index) */
.carousel-section { position: relative; background: #000; }
.carousel-slide { position: relative; height: 400px; background-size: cover; background-position: center; }
.carousel-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5), transparent); display: flex; align-items: center; }
.carousel-content { padding: 0 2rem; max-width: 600px; }
.carousel-title { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; }
.carousel-desc { font-size: 0.875rem; color: #d4d4d8; }
.carousel-accent { position: absolute; bottom: 0; right: 0; width: 33%; height: 96px; background: #facc15; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.carousel-line { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: #facc15; }
.carousel-nav { position: absolute; bottom: 2rem; left: 2rem; display: flex; gap: 0.5rem; }
.carousel-nav button { background: #facc15; border: none; padding: 0.5rem; border-radius: 0.5rem; color: #000; transition: background 0.2s; }
.carousel-nav button:hover { background: #eab308; }
.carousel-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.5); border: none; }
.carousel-dot.active { width: 24px; border-radius: 4px; background: #facc15; }

/* Tournament Grid */
.tournament-section { background: #EFFA24; padding: 2rem 0; }
.section-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.tournament-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.tournament-card { background: #000; border: 1px solid #27272a; padding: 1rem; transition: border-color 0.2s; }
.tournament-card:hover { border-color: #facc15; }
.tournament-card-inner { display: flex; gap: 1rem; }
.tournament-date { background: #18181b; padding: 0.5rem; text-align: center; min-width: 60px; }
.tournament-date .day { font-size: 1.25rem; font-weight: 700; }
.tournament-date .month { font-size: 0.75rem; color: #a1a1aa; }
.tournament-info h3 { font-weight: 700; color: #fff; transition: color 0.2s; }
.tournament-card:hover .tournament-info h3 { color: #facc15; }
.tournament-info p { font-size: 0.875rem; color: #a1a1aa; }
.tournament-time { display: flex; align-items: center; gap: 0.25rem; margin-top: 0.5rem; font-size: 0.875rem; color: #d4d4d8; }
.tournament-time svg { color: #71717a; width: 16px; height: 16px; }

/* Info Sections (News/Media) */
.news-section { background: #000; padding: 3rem 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.view-all { color: #facc15; font-size: 0.875rem; }
.view-all:hover { text-decoration: underline; }
.news-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.news-card { display: block; }
.news-image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-image img { transform: scale(1.05); }
.news-tag { position: absolute; top: 0; left: 0; background: #facc15; color: #000; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.5rem; }
.news-content { margin-top: 0.75rem; }
.news-content h3 { font-weight: 700; transition: color 0.2s; }
.news-card:hover .news-content h3 { color: #facc15; }
.media-section { background: #000; padding: 3rem 0; position: relative; overflow: hidden; }
.media-accent-top { position: absolute; top: 0; left: 0; width: 33%; height: 96px; background: #EFFA24; clip-path: polygon(0 0, 100% 0, 0 100%); }
.media-accent-bottom { position: absolute; bottom: 0; right: 0; width: 33%; height: 96px; background: #EFFA24; clip-path: polygon(100% 0, 100% 100%, 0 100%); }
.media-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; z-index: 10; }
.media-card { position: relative; }
.media-image { aspect-ratio: 16/9; position: relative; overflow: hidden; background: linear-gradient(to bottom, #1e3a8a, #1e3a8a); }
.media-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.media-badge { position: absolute; top: 0; left: 0; background: #facc15; color: #000; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.5rem; z-index: 10; }
.media-type { position: absolute; top: 0; right: 0; color: #22d3ee; font-size: 0.625rem; font-weight: 700; padding: 0.25rem 0.5rem; z-index: 10; }
.media-title-overlay { position: absolute; top: 25%; left: 0; width: 100%; padding: 0 1rem; z-index: 10; }
.media-title-overlay h3 { font-size: 1.25rem; font-weight: 700; color: #fff; line-height: 1.3; }
.media-title-overlay .highlight { color: #22d3ee; }
.media-play { position: absolute; bottom: 1rem; right: 1rem; background: #facc15; border-radius: 50%; padding: 0.75rem; z-index: 20; }
.media-play svg { width: 24px; height: 24px; color: #000; }
.media-content { margin-top: 0.75rem; }
.media-content h3 { font-weight: 700; transition: color 0.2s; }
.media-card:hover .media-content h3 { color: #facc15; }

/* Footer */
.footer-social { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1rem; }
.social-icon { background: #27272a; padding: 0.5rem; border-radius: 50%; transition: all 0.2s; }
.social-icon:hover { background: #facc15; color: #000; }
.social-icon svg { width: 14px; height: 14px; }
.footer-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 1rem; font-size: 0.625rem; }
.footer-links a:hover { color: #facc15; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo img { width: 20px; height: 20px; filter: invert(1); }
.footer-logo span { font-weight: 700; font-size: 0.875rem; }
.copyright { font-size: 0.5rem; color: #71717a; }

/* Responsive */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:block { display: block; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
    .md\:w-16 { width: 4rem; }
    
    .container { padding: 0 2rem; }
    .nav-menu { display: flex; }
    .register-btn { display: block; }
    .register-btn-mobile { display: none; }
    .mobile-menu-btn { display: none; }
    
    .hero-content { flex-direction: row; }
    .hero-left { width: 33%; }
    .hero-center { width: 50%; }
    .hero-right { width: 25%; }
    .tournament-logo { width: 160px; height: 160px; }
    .hero-title { font-size: 1.75rem; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
    
    .carousel-slide { height: 500px; }
    .carousel-title { font-size: 2.25rem; }
    .tournament-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .tournament-grid { grid-template-columns: repeat(4, 1fr); }
    .news-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile Menu */
.mobile-menu-overlay { position: fixed; inset: 0; background: #000; z-index: 100; display: none; padding: 2rem; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu-overlay.active { display: flex; }
.mobile-menu-close { position: absolute; top: 2rem; right: 2rem; color: #EFFA24; background: transparent; border: none; }
.mobile-nav-link { font-size: 1.5rem; font-weight: 700; color: #fff; }
.mobile-nav-link:hover { color: #EFFA24; }
