@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
    --bg-color: #0b0b0f;
    --card-bg: #15151c;
    --card-bg-hover: #1e1e26;
    --accent-gold: #c8a96b;
    --accent-gold-dark: #8f7443;
    --accent-red: #8b0000;
    --text-primary: #f5f5f0;
    --text-muted: #9ca3af;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
}

/* === UTILS === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.2), transparent);
    margin: 0 auto;
    width: 80%;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--text-primary);
    position: relative;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.section-title span {
    color: var(--accent-gold);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0b0b0f;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(200, 169, 107, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 107, 0.4);
}

.btn:active {
    transform: translateY(-1px);
}

.btn:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 3px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(200, 169, 107, 0.1);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(200, 169, 107, 0.2);
}

/* === NAVBAR === */
header {
    background: rgba(11, 11, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 169, 107, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    transition: var(--transition);
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: var(--accent-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 11, 15, 0.7), #0b0b0f), url('hero-bg.jpg') center/cover;
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-out;
}

.main-sponsor-spotlight {
    position: relative;
    width: 100%;
    padding: 48px 0 56px;
    overflow: hidden;
    border-top: 2px solid rgba(200, 169, 107, 0.45);
    border-bottom: 2px solid rgba(200, 169, 107, 0.45);
    background: linear-gradient(180deg, #0a0a0e 0%, #121018 45%, #0a0a0e 100%);
    box-shadow:
        0 -20px 60px rgba(200, 169, 107, 0.12),
        0 24px 80px rgba(0, 0, 0, 0.65);
}

.main-sponsor-spotlight-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 120% at 50% 50%, rgba(200, 169, 107, 0.18) 0%, transparent 65%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 80px,
            rgba(200, 169, 107, 0.03) 80px,
            rgba(200, 169, 107, 0.03) 81px
        );
    pointer-events: none;
    animation: sponsorShimmer 8s ease-in-out infinite;
}

@keyframes sponsorShimmer {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}

.main-sponsor-spotlight-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.main-sponsor-spotlight-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.main-sponsor-spotlight-line {
    flex: 1;
    max-width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.main-sponsor-spotlight-tag {
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    text-shadow: 0 0 24px rgba(200, 169, 107, 0.55);
    white-space: nowrap;
}

.main-sponsor-spotlight-stage {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 28px 48px;
    min-height: 140px;
    min-width: min(520px, 92vw);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(28, 26, 22, 0.95), rgba(12, 12, 16, 0.98));
    border: 1px solid rgba(200, 169, 107, 0.4);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 20px 50px rgba(0, 0, 0, 0.55),
        0 0 60px rgba(200, 169, 107, 0.15);
    animation: sponsorStagePulse 3s ease-in-out infinite;
}

@keyframes sponsorStagePulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.04) inset,
            0 20px 50px rgba(0, 0, 0, 0.55),
            0 0 50px rgba(200, 169, 107, 0.12);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.06) inset,
            0 24px 60px rgba(0, 0, 0, 0.6),
            0 0 90px rgba(200, 169, 107, 0.28);
    }
}

.main-sponsor-spotlight-ring {
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(200, 169, 107, 0.7), transparent, rgba(200, 169, 107, 0.5)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.85;
    pointer-events: none;
}

#main-sponsor-logo {
    position: relative;
    z-index: 2;
    max-height: clamp(80px, 14vw, 150px);
    max-width: min(480px, 85vw);
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.65));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.main-sponsor-spotlight-stage:hover #main-sponsor-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 12px 36px rgba(200, 169, 107, 0.35));
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

#hero-logo {
    max-width: 350px;
    margin-bottom: 20px;
    border-radius: 50%;
    background-color: #fff;
    filter: drop-shadow(0 0 25px rgba(200, 169, 107, 0.4));
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.8);
    letter-spacing: 3px;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-meta {
    font-size: 1.2rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 600px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
}

.time-box {
    background: rgba(21, 21, 28, 0.6);
    backdrop-filter: blur(5px);
    padding: 20px 25px;
    border-radius: 12px;
    min-width: 110px;
    border: 1px solid rgba(200, 169, 107, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.time-box span {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.time-box small {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Next Match Featured Card */
.featured-match-container {
    margin-top: 60px;
    width: 100%;
    max-width: 700px;
}

.next-match-card {
    background: linear-gradient(145deg, var(--card-bg), #1a1a24);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.next-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
}

.badge-upcoming {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(139, 0, 0, 0.2);
    color: #ff4d4d;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 77, 77, 0.3);
}

.badge-upcoming.is-live {
    background: rgba(220, 38, 38, 0.2);
    color: #ff8080;
    border-color: rgba(255, 0, 0, 0.5);
}

.live-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 6px;
    border-radius: 50%;
    background: #ff1f1f;
    box-shadow: 0 0 0 rgba(255, 31, 31, 0.6);
    animation: pulse-live 1s infinite;
    vertical-align: middle;
}

.live-mini {
    margin-left: 8px;
    font-size: 0.75rem;
    color: #ff7a7a;
    font-weight: 700;
}

@keyframes pulse-live {
    0% { box-shadow: 0 0 0 0 rgba(255, 31, 31, 0.6); opacity: 1; }
    70% { box-shadow: 0 0 0 8px rgba(255, 31, 31, 0); opacity: 0.85; }
    100% { box-shadow: 0 0 0 0 rgba(255, 31, 31, 0); opacity: 1; }
}

.next-match-card h4 {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    letter-spacing: 1.5px;
}

#next-match-details {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* === CARDS & GRIDS === */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* === SCHEDULE & RESULTS === */
.day-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.day-tab {
    padding: 10px 25px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(200, 169, 107, 0.2);
    cursor: pointer;
    border-radius: 30px;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.day-tab:hover {
    border-color: var(--accent-gold);
    color: var(--text-primary);
}

.day-tab.active {
    background: var(--accent-gold);
    color: #0b0b0f;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(200, 169, 107, 0.3);
}

.match-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.match-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.match-card:hover {
    transform: translateY(-3px);
    background: var(--card-bg-hover);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: rgba(200, 169, 107, 0.1);
}

.match-time {
    font-weight: 700;
    color: var(--accent-gold);
    width: 70px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.match-teams {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.team {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    width: 40%;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.team-home {
    text-align: right;
}

.team-away {
    text-align: left;
}

.vs-score {
    font-size: 1.3rem;
    font-weight: 900;
    background: #0b0b0f;
    padding: 8px 20px;
    border-radius: 8px;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
}

.score-finished {
    color: var(--accent-gold);
    border-color: rgba(200, 169, 107, 0.3);
}

.score-upcoming {
    color: var(--text-muted);
    font-size: 1rem;
}

.match-phase {
    width: 90px;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* === BRACKET === */
.bracket-container {
    display: flex;
    overflow-x: auto;
    padding: 40px 0;
    justify-content: center;
    min-width: 100%;
    gap: 40px;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    min-width: 240px;
    position: relative;
}

.bracket-round h4 {
    position: absolute;
    top: -40px;
    width: 100%;
    text-align: center;
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.bracket-match {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    margin: 15px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.bracket-match:hover {
    border-color: rgba(200, 169, 107, 0.5);
    transform: scale(1.02);
}

.bracket-team {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-weight: 600;
}

.bracket-team:last-child {
    border-bottom: none;
}

.bracket-team span.score {
    color: var(--accent-gold);
    font-weight: 800;
    background: #0b0b0f;
    padding: 2px 8px;
    border-radius: 4px;
}

.bracket-team.winner {
    color: #fff;
}

.bracket-team.winner span.score {
    background: rgba(200, 169, 107, 0.2);
}

/* Connecting lines for bracket */
.bracket-round:not(:last-child) .bracket-match::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    width: 20px;
    height: 1px;
    background: rgba(200, 169, 107, 0.3);
}

/* === REGISTRATION FORM === */
.form-container,
.next-match-card,
.group-card,
.coming-soon-box {
    transition: var(--transition);
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-dark));
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.form-group input {
    width: 100%;
    padding: 15px;
    background: #0b0b0f;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.1);
}

.form-group input:focus + label {
    color: var(--accent-gold);
}

/* === INFO SECTIONS === */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.prize-card {
    background: linear-gradient(180deg, var(--card-bg), #0b0b0f);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.prize-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.prize-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 107, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.prize-card:hover::before {
    width: 100%;
}

.prize-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.prize-card p {
    font-size: 1.1rem;
    font-weight: 700;
}

/* === GALLERY PREVIEW === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* === PREVIOUS WINNERS === */
.winners-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.winner-card {
    background: var(--card-bg);
    padding: 20px 30px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 250px;
}

.winner-year {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(200, 169, 107, 0.5);
    font-family: var(--font-heading);
}

.winner-name {
    font-size: 1.2rem;
    font-weight: 700;
}

/* === FOOTER & SPONSORS === */
/* === ABOUT / MEMORIAL === */
.about-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #0e0e14 50%, var(--bg-color) 100%);
    overflow: hidden;
}

.about-section-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(200, 169, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.about-memorial {
    max-width: 820px;
    margin: 0 auto;
}

.about-memorial-frame {
    position: relative;
    padding: 48px 40px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(21, 21, 28, 0.95), rgba(11, 11, 15, 0.98));
    border: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.about-eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    line-height: 1.55;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 28px;
}

.about-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0;
    gap: 16px;
}

.about-divider::before,
.about-divider::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 107, 0.5), transparent);
}

.about-divider span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 12px rgba(200, 169, 107, 0.6);
}

.about-text {
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    line-height: 2;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* === SPONSORS === */
.sponsors-section {
    padding: 72px 0 80px;
    background: linear-gradient(180deg, #08080a, #0b0b0f);
    border-top: 1px solid rgba(200, 169, 107, 0.12);
}

.sponsors-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    margin-bottom: 48px;
    text-transform: uppercase;
    font-weight: 600;
}

.sponsors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 28px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100px;
    padding: 24px 20px;
    border-radius: 12px;
    background: rgba(21, 21, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.sponsor-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 169, 107, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    background: rgba(28, 26, 22, 0.8);
}

.sponsor-card img {
    max-height: 72px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: grayscale(15%);
    transition: var(--transition);
}

.sponsor-card:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.04);
}

footer {
    background: #050507;
    padding: 60px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent-gold);
    color: #0b0b0f;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.admin-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.admin-link:hover {
    color: var(--accent-gold);
}

/* === GROUPS (PRE-LAUNCH) === */
.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.group-card {
    background: linear-gradient(145deg, var(--card-bg), #1a1a24);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(200, 169, 107, 0.2);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.group-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 107, 0.5);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.group-title {
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.group-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.group-list li {
    background: rgba(255,255,255,0.03);
    padding: 10px 15px;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    border-left: 3px solid rgba(200, 169, 107, 0.2);
}

/* === COMING SOON BOX === */
.coming-soon-box {
    background: linear-gradient(145deg, var(--card-bg), #0b0b0f);
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px dashed rgba(200, 169, 107, 0.3);
    color: var(--accent-gold);
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    opacity: 0.8;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
    .match-teams {
        flex-direction: column;
        gap: 10px;
    }

    .team {
        width: 100%;
        text-align: center;
    }

    .vs-score {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: -100%;
        background: rgba(11, 11, 15, 0.95);
        backdrop-filter: blur(10px);
        padding: 40px 0;
        text-align: center;
        border-bottom: 1px solid rgba(200, 169, 107, 0.2);
        opacity: 0;
    }

    .nav-links.active {
        left: 0;
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-meta {
        font-size: 1rem;
    }

    .countdown {
        gap: 15px;
    }

    .time-box {
        min-width: 80px;
        padding: 15px;
    }

    .time-box span {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .match-time, .match-phase {
        display: none;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-sponsor-spotlight {
        padding: 32px 0 40px;
    }

    .main-sponsor-spotlight-head {
        gap: 10px;
        margin-bottom: 20px;
    }

    .main-sponsor-spotlight-line {
        max-width: 60px;
    }

    .main-sponsor-spotlight-tag {
        letter-spacing: 0.2em;
    }

    .main-sponsor-spotlight-stage {
        min-width: 0;
        width: 100%;
        padding: 20px 16px;
    }

    .about-memorial-frame {
        padding: 32px 20px;
    }

    .sponsors {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .sponsor-card {
        min-height: 80px;
        padding: 16px 12px;
    }
}
