/* ========================================
   HOMEPAGE-SPECIFIC RESETS
======================================== */

/* Remove all underlines from links that look like buttons */
a.btn-primary,
a.btn-secondary,
a[class*="btn"],
button {
    text-decoration: none !important;
}

/* Ensure no white gaps */
.homepage {
    margin: 0;
    padding: 0;
}

/* Remove any inherited margins */
.hero {
    margin-top: 0 !important;
}

.newsletter {
    margin-bottom: 0 !important;
}

/* ========================================
   HOMEPAGE STYLES
======================================== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C8AA6E;
    background: rgba(200, 170, 110, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(200, 170, 110, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #999;
    font-family: 'Lora', serif;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.blz-contentstack.com/v3/assets/blt3452e3b114fab0cd/blt7f5f90a6b24ed5f1/63ef50f0d36c8c109fe1c5e3/header-pc.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: blur(3px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(10,10,10,0.8) 0%, 
        rgba(10,10,10,0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 0;
}

/* Tournament Badge */
.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(200, 170, 110, 0.15);
    border: 1px solid rgba(200, 170, 110, 0.4);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #C8AA6E;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-status {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Title */
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: #bbb;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C8AA6E;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, #C8AA6E 0%, #E8CAAE 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(200, 170, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 170, 110, 0.6);
}

.btn-secondary {
    background: rgba(200, 170, 110, 0.1);
    color: #C8AA6E;
    border: 2px solid rgba(200, 170, 110, 0.4);
}

.btn-secondary:hover {
    background: rgba(200, 170, 110, 0.2);
    border-color: rgba(200, 170, 110, 0.6);
    transform: translateY(-2px);
}

.btn-primary svg,
.btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    stroke: #C8AA6E;
}

/* ========================================
   FEATURED MATCHUP SECTION
======================================== */
.featured-matchup {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #0a0a0a 0%, #1a1a1a 100%);
}

.matchup-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

/* Moment Side */
.moment-side {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(200, 170, 110, 0.2);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
}

.moment-side:hover {
    border-color: rgba(200, 170, 110, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.moment-video {
    margin-bottom: 1.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(200, 170, 110, 0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background: rgba(200, 170, 110, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    margin-left: 4px; /* Center the triangle visually */
}

/* Moment Info */
.moment-info {
    margin-bottom: 1.5rem;
}

.moment-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.moment-meta {
    font-size: 0.9rem;
    color: #C8AA6E;
    margin-bottom: 1rem;
}

.moment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.tag.epic {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.4);
}

.tag.tragic {
    background: rgba(63, 81, 181, 0.2);
    color: #5C6BC0;
    border: 1px solid rgba(63, 81, 181, 0.4);
}

.tag.dark {
    background: rgba(96, 125, 139, 0.2);
    color: #90A4AE;
    border: 1px solid rgba(96, 125, 139, 0.4);
}

.tag.emotional {
    background: rgba(233, 30, 99, 0.2);
    color: #EC407A;
    border: 1px solid rgba(233, 30, 99, 0.4);
}

.moment-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

/* Vote Section */
.vote-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(200, 170, 110, 0.2);
}

.vote-percentage {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #C8AA6E;
}

.vote-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(200, 170, 110, 0.2);
    border: 2px solid rgba(200, 170, 110, 0.5);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vote-btn:hover {
    background: rgba(200, 170, 110, 0.3);
    border-color: rgba(200, 170, 110, 0.7);
    transform: translateY(-2px);
}

.vote-btn svg {
    width: 18px;
    height: 18px;
}

/* VS Divider */
.vs-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C8AA6E 0%, #E8CAAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(200, 170, 110, 0.4);
    z-index: 2;
}

.divider-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 300%;
    background: linear-gradient(to bottom,
        rgba(200, 170, 110, 0) 0%,
        rgba(200, 170, 110, 0.5) 50%,
        rgba(200, 170, 110, 0) 100%
    );
    z-index: 1;
}

/* Vote Progress */
.vote-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    position: relative;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(200, 170, 110, 0.2);
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C8AA6E 0%, #E8CAAE 100%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1.5rem;
    transition: width 0.5s ease;
}

.progress-label {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.progress-label.opponent {
    position: absolute;
    right: 1.5rem;
    color: #C8AA6E;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.vote-count {
    text-align: center;
    font-size: 0.95rem;
    color: #999;
}

/* Matchup CTA */
.matchup-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(200, 170, 110, 0.2);
}

.cta-text {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 1rem;
}

/* ========================================
   RECENT RESULTS SECTION
======================================== */
.recent-results {
    padding: 5rem 0;
    background: #0a0a0a;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Result Card */
.result-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(200, 170, 110, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.result-card:hover {
    border-color: rgba(200, 170, 110, 0.4);
    transform: translateY(-3px);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 170, 110, 0.1);
}

.result-round {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #C8AA6E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.result-date {
    font-size: 0.85rem;
    color: #777;
}

/* Result Matchup */
.result-matchup {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.result-moment {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    position: relative;
}

.result-moment.winner {
    background: rgba(200, 170, 110, 0.1);
    border: 1px solid rgba(200, 170, 110, 0.3);
}

.result-moment img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.result-info {
    flex: 1;
}

.result-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.result-score {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #999;
    font-weight: 600;
}

.result-score.winner {
    color: #C8AA6E;
    font-size: 1.3rem;
}

.winner-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(200, 170, 110, 0.9);
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.result-vs {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Result Stats */
.result-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
}

.upset-tag {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.upset-tag.upset {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

.upset-tag.dominant {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

/* Results CTA */
.results-cta {
    text-align: center;
}

/* ========================================
   CHAMPIONS SECTION
======================================== */
.champions {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
}

.champions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Champion Card */
.champion-card {
    position: relative;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(200, 170, 110, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.champion-card:hover {
    border-color: rgba(200, 170, 110, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(200, 170, 110, 0.3);
}

.champion-crown {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.champion-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.champion-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.champion-card:hover .champion-image img {
    transform: scale(1.1);
}

.champion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.champion-badge {
    background: rgba(255, 215, 0, 0.9);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.champion-info {
    padding: 1.5rem;
}

.champion-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.champion-tournaments {
    font-size: 0.9rem;
    color: #C8AA6E;
    margin-bottom: 1rem;
}

.champion-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #999;
}

/* ========================================
   HOW IT WORKS SECTION
======================================== */
.how-it-works {
    padding: 5rem 0;
    background: #0a0a0a;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Step Card */
.step-card {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(200, 170, 110, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: rgba(200, 170, 110, 0.5);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #C8AA6E 0%, #E8CAAE 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    box-shadow: 0 4px 10px rgba(200, 170, 110, 0.4);
}

.step-icon {
    margin: 2rem 0 1.5rem;
}

.step-icon svg {
    stroke: #C8AA6E;
    width: 48px;
    height: 48px;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.step-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bbb;
}

/* ========================================
   YOUTUBE CTA SECTION
======================================== */
.youtube-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text .cta-label {
    display: inline-block;
    font-size: 0.85rem;
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.cta-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-description {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 2rem;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #FF0000;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.4);
}

.btn-youtube svg {
    width: 24px;
    height: 24px;
}

.cta-video {
    position: relative;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(200, 170, 110, 0.3);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px) {
    .matchup-container {
        gap: 2rem;
    }

    .cta-content {
        gap: 3rem;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .matchup-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vs-divider {
        order: 2;
        flex-direction: row;
        width: 100%;
        height: auto;
    }

    .vs-circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .divider-line {
        width: 100%;
        height: 2px;
        transform: translate(-50%, -50%);
    }

    .moment-side:first-child {
        order: 1;
    }

    .moment-side:last-child {
        order: 3;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .newsletter-icon {
        margin: 0 auto;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .moment-side {
        padding: 1.5rem;
    }

    .moment-title {
        font-size: 1.3rem;
    }

    .vote-section {
        flex-direction: column;
        gap: 1rem;
    }

    .vote-btn {
        width: 100%;
        justify-content: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .champions-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .tournament-badge {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .moment-title {
        font-size: 1.1rem;
    }

    .vote-percentage {
        font-size: 2rem;
    }

    .progress-bar {
        height: 40px;
    }

    .progress-label {
        font-size: 0.9rem;
    }

    .result-moment img {
        width: 50px;
        height: 50px;
    }

    .result-info h4 {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */

/* Fade in on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.tournament-badge {
    animation-delay: 0.1s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
}

.hero-title {
    animation-delay: 0.2s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero-subtitle {
    animation-delay: 0.3s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

.hero-stats {
    animation-delay: 0.4s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero-actions {
    animation-delay: 0.5s;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

/* Pulse animation for live badge */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.section-label {
    animation: pulse 2s infinite;
}

/* Loading state for vote button */
.vote-btn.loading {
    pointer-events: none;
    opacity: 0.6;
}

.vote-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #C8AA6E;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Success state */
.vote-btn.success {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.6);
    color: #4CAF50;
}


/* ========================================
   BOOK RECOMMENDATION MODAL
   ======================================== */

.book-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.book-modal-content {
    position: relative;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 12px;
    border: 2px solid rgba(200, 155, 60, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.8);
    animation: slideUp 0.3s ease;
}

.book-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s ease, transform 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-modal-close:hover {
    color: #C89B3C;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsive */
@media (max-width: 768px) {
    .book-modal-content {
        width: 95%;
        margin: 10% auto;
    }
}
/* ========================================
   BOOK RECOMMENDATION IN MODAL
   ======================================== */

.book-recommendation {
    padding: 2rem;
    color: #f0f0f0;
}

.book-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(200, 155, 60, 0.3);
}

.book-icon {
    font-size: 2rem;
}

.book-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #C89B3C;
    letter-spacing: 0.05em;
    margin: 0;
}

.book-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.book-cover-section {
    position: relative;
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.book-cover:hover {
    transform: scale(1.05);
}

.book-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #C89B3C;
    letter-spacing: 0.03em;
    margin: 0;
    line-height: 1.2;
}

.book-author {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: -0.5rem 0 0 0;
}

.book-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0.5rem 0;
}

.book-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    color: #00c896;
    font-weight: bold;
    font-size: 1.1rem;
}

.book-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #C89B3C, #B8860B);
    color: #0a0a0a;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
    width: fit-content;
    margin-top: 0.5rem;
}

.book-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(200, 155, 60, 0.5);
    background: linear-gradient(135deg, #d4a945, #C89B3C);
}

.book-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .book-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .book-cover-section {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .book-recommendation {
        padding: 1.5rem;
    }
    
    .book-header h3 {
        font-size: 1.5rem;
    }
    
    .book-title {
        font-size: 1.5rem;
    }
}
/* Loading State */
.moment-title:empty::after,
.moment-meta:empty::after,
.moment-description:empty::after {
    content: '';
    display: block;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    height: 1em;
    width: 100%;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.results-grid p {
    padding: 3rem 2rem;
    font-size: 1.1rem;
}
/* ========================================
   LIVE MATCHES SECTION
   ======================================== */

.live-matches {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
}

.live-matches::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

.live-matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.live-match-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(200, 170, 110, 0.2);
    border-radius: 8px;
    padding: 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.live-match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(200, 170, 110, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.live-match-card:hover::before {
    left: 100%;
}

.live-match-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 170, 110, 0.5);
    box-shadow: 0 12px 40px rgba(200, 170, 110, 0.15);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
}

.live-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 170, 110, 0.15);
}

.live-match-round {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #C8AA6E;
    letter-spacing: 0.05em;
}

.live-match-time {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-match-time::before {
    content: '●';
    color: #C8AA6E;
    animation: livePulse 2s infinite;
    font-size: 0.7rem;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.live-match-songs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.live-match-song {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(200, 170, 110, 0.03);
    border: 1px solid rgba(200, 170, 110, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.live-match-song:hover {
    background: rgba(200, 170, 110, 0.08);
    border-color: rgba(200, 170, 110, 0.2);
}

.live-match-thumbnail {
    width: 70px;
    height: 52px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(200, 170, 110, 0.2);
    transition: transform 0.3s ease;
}

.live-match-song:hover .live-match-thumbnail {
    transform: scale(1.05);
}

.live-match-info {
    flex: 1;
    min-width: 0;
}

.live-match-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-match-artist {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.25rem 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.live-match-votes {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #C8AA6E;
    font-size: 1.1rem;
    min-width: 40px;
    text-align: right;
}

.live-match-vs {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(200, 170, 110, 0.4);
    margin: 0.5rem 0;
    letter-spacing: 0.1em;
}

.live-match-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(200, 170, 110, 0.15);
}

.live-match-total {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.live-match-cta {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C8AA6E;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.live-match-card:hover .live-match-cta {
    color: #F0E6D2;
    letter-spacing: 0.1em;
}

/* ========================================
   RECENT RESULTS SECTION
   ======================================== */

.recent-results {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
}

.recent-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(200, 170, 110, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 170, 110, 0.4);
    box-shadow: 0 8px 30px rgba(200, 170, 110, 0.1);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(200, 170, 110, 0.15);
}

.result-round {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #C8AA6E;
    letter-spacing: 0.05em;
}

.result-date {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.result-matchup {
    margin-bottom: 1rem;
}

.result-moment {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(200, 170, 110, 0.03);
    border: 1px solid rgba(200, 170, 110, 0.1);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.result-moment.winner {
    background: rgba(200, 170, 110, 0.08);
    border-color: rgba(200, 170, 110, 0.3);
    position: relative;
}

.result-moment img {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(200, 170, 110, 0.2);
}

.result-info {
    flex: 1;
    min-width: 0;
}

.result-info h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-score {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.result-score.winner {
    color: #C8AA6E;
    font-size: 1.1rem;
}

.winner-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #C8AA6E, #8B7355);
    color: #0a0a0a;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(200, 170, 110, 0.4);
}

.result-vs {
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(200, 170, 110, 0.4);
    margin: 0.5rem 0;
    letter-spacing: 0.1em;
}

.result-stats {
    font-family: 'Lora', serif;
    text-align: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(200, 170, 110, 0.15);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========================================
   MATCHES CTA SECTION
   ======================================== */

.matches-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.matches-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

.cta-card {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(200, 170, 110, 0.3);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 170, 110, 0.05) 0%, transparent 70%);
    animation: ctaGlow 8s linear infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C8AA6E;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.cta-card p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-card .btn-primary {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, #C8AA6E, #8B7355);
    color: #0a0a0a;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(200, 170, 110, 0.3);
}

.cta-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 170, 110, 0.5);
    background: linear-gradient(135deg, #F0E6D2, #C8AA6E);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .live-matches-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .live-match-thumbnail,
    .result-moment img {
        width: 55px;
        height: 41px;
    }
    
    .live-match-title,
    .result-info h4 {
        font-size: 0.9rem;
    }
    
    .cta-card {
        padding: 3rem 2rem;
    }
    
    .cta-card h3 {
        font-size: 1.8rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .live-match-card,
    .result-card {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-card .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
/* ========================================
   FEATURED MATCH SECTION
   ======================================== */
.featured-matchup {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.featured-matchup::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

/* Reuse .competitors-grid from vote.css */
/* Reuse .competitor-column from vote.css */
/* Reuse .video-container from vote.css */
/* Reuse .vote-section from vote.css */

/* ========================================
   LIVE MATCHES SECTION TWEAKS
   ======================================== */
.live-matches-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.live-matches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

/* ========================================
   RECENT RESULTS SECTION TWEAKS
   ======================================== */
.recent-results-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.recent-results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

/* ========================================
   CTA CARD SECTION
   ======================================== */
.matches-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.cta-card {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
    border: 2px solid rgba(200, 170, 110, 0.3);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 170, 110, 0.05) 0%, transparent 70%);
    animation: ctaGlow 8s linear infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.cta-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #C8AA6E;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

.cta-card p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.cta-card .view-details-btn {
    font-size: 1.1rem;
    padding: 1.1rem 3rem;
    position: relative;
    z-index: 1;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .featured-matchup,
    .live-matches-section,
    .recent-results-section,
    .matches-cta {
        padding: 3rem 0;
    }
    
    .cta-card {
        padding: 3rem 2rem;
    }
    
    .cta-card h3 {
        font-size: 1.8rem;
    }
}
/* ========================================
   FEATURED BOOK SECTION
   ======================================== */

.featured-book {
    padding: 6rem 0;
    background: linear-gradient(180deg, 
        rgba(10, 15, 25, 0.8) 0%, 
        rgba(15, 20, 30, 0.9) 100%);
    position: relative;
}

.featured-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(200, 170, 110, 0.3) 50%, 
        transparent 100%);
}

.featured-book-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* Video Side */
.featured-book-video {
    position: relative;
}

.featured-book-video .video-container {
    margin-bottom: 1.5rem;
}

.featured-book-video .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(200, 170, 110, 0.2);
}

.featured-book-video .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    text-align: center;
    padding: 1rem;
}

.video-caption h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #C8AA6E;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.video-caption p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Book Info Side */
.featured-book-info {
    display: flex;
    gap: 2rem;
}

.book-cover-wrapper {
    flex-shrink: 0;
}

.featured-book-cover {
    width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(200, 170, 110, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-book-cover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(200, 170, 110, 0.3);
}

.book-text {
    flex: 1;
}

.book-text .book-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C8AA6E;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.book-text .book-author {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.book-text .book-description {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.book-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.book-highlights li {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-book-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C8AA6E, #B89A5E);
    color: #0A0F19;
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(200, 170, 110, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-book-cta:hover {
    background: linear-gradient(135deg, #D4B87A, #C8AA6E);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 170, 110, 0.4);
}

.book-text .book-disclaimer {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .featured-book-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .featured-book-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .book-highlights {
        grid-template-columns: 1fr;
    }
    
    .featured-book-cover {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .featured-book {
        padding: 4rem 0;
    }
    
    .book-text .book-title {
        font-size: 1.6rem;
    }
    
    .book-text .book-description {
        font-size: 1rem;
    }
    
    .featured-book-cover {
        width: 160px;
    }
    
    .featured-book-cta {
        width: 100%;
        justify-content: center;
    }
}
/* Notification Button Updates */
.notification-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-btn {
    transition: all 0.3s;
}

.newsletter-btn.notifications-enabled {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    cursor: default;
}

.newsletter-btn.notifications-enabled:hover {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    transform: none;
}

.notification-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Lora', serif;
    margin: 0;
    text-align: center;
}

.notification-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* Notification Button States */
.newsletter-btn.notifications-enabled {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.newsletter-btn.notifications-enabled:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
}

.newsletter-btn.notifications-disabled {
    background: linear-gradient(135deg, #C8AA6E, #B49A5E);
    color: #0a0a0a;
}

.newsletter-btn.notifications-disabled:hover {
    background: linear-gradient(135deg, #d4b876, #C8AA6E);
    transform: translateY(-2px);
}
/* ========================================
   VIEW ALL LINK (Upcoming Matches)
   ======================================== */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 2rem;
}

.section-title-group {
    flex: 1;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 8px;
    color: #c89b3c;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-link:hover {
    background: rgba(200, 155, 60, 0.2);
    border-color: rgba(200, 155, 60, 0.5);
    transform: translateX(3px);
}

.view-all-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .view-all-link {
        align-self: stretch;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}
/* ========================================
   TOURNAMENT BADGE (Enhanced)
   ======================================== */

.tournament-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(200, 155, 60, 0.15);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge-icon {
    font-size: 1.2rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #c89b3c;
    letter-spacing: 0.05em;
}

.badge-status {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 0.75rem;
    border-left: 1px solid rgba(200, 155, 60, 0.3);
}

/* Live badge styling */
.tournament-badge:has(.badge-icon:contains("🔴")) {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
}

/* Starting soon styling */
.tournament-badge:has(.badge-icon:contains("⏰")) {
    background: rgba(255, 170, 0, 0.15);
    border-color: rgba(255, 170, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .tournament-badge {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .badge-status {
        padding-left: 0;
        border-left: none;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(200, 155, 60, 0.3);
    }
}
/* ========================================
   SECTION HEADERS - CONSISTENT LAYOUT
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(200, 155, 60, 0.15);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 50px;
    color: #c89b3c;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.05em;
}

.section-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 600px;
}

/* ========================================
   UPCOMING MATCHES - SPECIAL HEADER LAYOUT
   ======================================== */

.upcoming-matches-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
}

/* Label stays centered */
.upcoming-matches-section .section-label {
    align-self: center;
}

/* Title group + link container */
.upcoming-matches-section .section-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
}

.section-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* View All Link */
.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(200, 155, 60, 0.1);
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 8px;
    color: #c89b3c;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 0.5rem;
    justify-self: center;
}

.view-all-link:hover {
    background: rgba(200, 155, 60, 0.2);
    border-color: rgba(200, 155, 60, 0.5);
    transform: translateX(3px);
}

.view-all-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.view-all-link:hover i {
    transform: translateX(3px);
}

/* ========================================
   SECTIONS SPACING
   ======================================== */

.matches-section {
    padding: 5rem 0;
    position: relative;
}

.featured-matchup {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(20, 20, 20, 0.5) 100%);
}

.matches-cta {
    padding: 4rem 0;
    background: rgba(200, 155, 60, 0.05);
}

.featured-book {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.5) 0%, rgba(10, 10, 10, 0) 100%);
}

.champions {
    padding: 5rem 0;
}

.how-it-works {
    padding: 5rem 0;
    background: rgba(200, 155, 60, 0.03);
}

.youtube-cta {
    padding: 5rem 0;
}

/* ========================================
   MATCHES GRID SPACING
   ======================================== */

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* ========================================
   EMPTY STATE (No Results Yet)
   ======================================== */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(200, 155, 60, 0.05);
    border: 1px solid rgba(200, 155, 60, 0.2);
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #c89b3c;
    margin-bottom: 1rem;
}

.empty-state p {
    font-family: 'Lora', serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   CTA CARD STYLING
   ======================================== */

.cta-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(200, 155, 60, 0.1), rgba(200, 155, 60, 0.05));
    border: 1px solid rgba(200, 155, 60, 0.3);
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-card p {
    font-family: 'Lora', serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .matches-section {
        padding: 3rem 0;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .view-all-link {
        width: 100%;
        justify-content: center;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
}
/* ========================================
   MATCHES GRID - PROPER SIZING
   ======================================== */

.matches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* For very large screens, allow 3 columns max */
@media (min-width: 1600px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .matches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* ========================================
   HOMEPAGE LOADING STATE
   ======================================== */

.homepage-loading-state {
    padding: 10rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.loader {
    width: 70px;
    height: 70px;
    border: 6px solid rgba(200, 170, 110, 0.2);
    border-top-color: #C8AA6E;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #C8AA6E;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.loading-subtext {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Fade in animation for homepage sections */
.homepage-fade-in {
    animation: fadeInUp 0.8s ease;
}

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

/* Stagger animation for multiple sections */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
    .homepage-loading-state {
        padding: 5rem 0;
        min-height: 60vh;
    }
    
    .loader {
        width: 60px;
        height: 60px;
        border-width: 5px;
    }
    
    .loading-text {
        font-size: 1.5rem;
    }
    
    .loading-subtext {
        font-size: 1rem;
    }
}
/* ========================================
   FEATURED MATCH COUNTDOWN
   ======================================== */

.featured-countdown {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 2rem 0;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Urgent animation when time is running out */
@keyframes pulse-urgent {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.9;
    }
}

.featured-countdown.urgent {
    animation: pulse-urgent 2s infinite;
}
/* Hide vote stats until user votes */
.vote-stats.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.vote-stats.revealed {
    opacity: 1;
    visibility: visible;
    height: auto;
    animation: revealStats 0.4s ease;
}

@keyframes revealStats {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Featured Match - Vote Now Button */
.vote-now-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #c89b3c, #8b6914);
    color: #0a0a0a;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.vote-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(200, 155, 60, 0.6);
    background: linear-gradient(135deg, #d4a742, #9a7418);
}

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

/* Vote stats - always visible on homepage */
.featured-matchup .vote-percentage,
.featured-matchup .vote-count {
    opacity: 1 !important;
    display: block !important;
}
/* User voted state */
.match-card.user-voted {
    border: 2px solid #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
}



.view-results-btn.voted {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    color: white;
}

.view-results-btn.voted:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}
/* ========================================
   VIEW RESULTS BUTTON (After Voting)
   ======================================== */

.view-results-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.view-results-btn.voted {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    position: relative;
    overflow: hidden;
}

/* Subtle animated shine effect */
.view-results-btn.voted::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.view-results-btn.voted:hover::before {
    left: 100%;
}

.view-results-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.view-results-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.view-results-btn i {
    font-size: 1rem;
    filter: brightness(1.2);
}

/* Disabled state (just in case) */
.view-results-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .view-results-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .view-results-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CONTRAST WITH VOTE NOW BUTTON
   ======================================== */

/* Make sure Vote Now button stays distinct */
.vote-now-btn {
    background: linear-gradient(135deg, #c8aa6e 0%, #8b7355 100%);
    color: #1a1614;
    border: 2px solid rgba(200, 170, 110, 0.3);
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(200, 170, 110, 0.25);
}

.vote-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 170, 110, 0.4);
    border-color: rgba(200, 170, 110, 0.5);
}

.vote-now-btn i {
    font-size: 1rem;
}

/* ========================================
   VISUAL FEEDBACK ON MATCH CARDS
   ======================================== */

/* Add subtle green glow to cards where user voted */
.match-card.user-voted {
    border: 2px solid rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.match-card.user-voted:hover {
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.25);
}



/* Make sure match card has position relative for the badge */
.match-card {
    position: relative;
}

/* Voted Badge (replaces status badge when user has voted) */
.voted-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
    }
}
/* Featured voted message */
.featured-voted-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
}

.voted-icon {
    font-size: 1.5rem;
    color: #10b981;
}

.voted-text {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.voted-text strong {
    color: #10b981;
    font-weight: 700;
}

/* View Results button (green theme) */
.view-results-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.view-results-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}
/* Optional: Make header badge match the smaller style */
.match-header .voted-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}
/* Hidden vote section before user votes */
.vote-section[style*="opacity: 0"] .percentage-number,
.vote-section[style*="opacity: 0"] .vote-count {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}
/* ========================================
   FEATURED CTA - INLINE BELOW VIDEOS
======================================== */

.featured-cta-inline {
    grid-column: 1 / -1; /* Span all 3 columns */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.vote-now-btn-inline {
    width: 100%;
    max-width: 600px;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #C8AA6E, #b49a5e);
    color: #0a0a0a;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(200, 170, 110, 0.3);
    border: 2px solid rgba(200, 170, 110, 0.5);
}

.vote-now-btn-inline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(200, 170, 110, 0.5);
    background: linear-gradient(135deg, #d4b67a, #c0a66a);
}

.featured-voted-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(200, 170, 110, 0.1);
    border: 2px solid rgba(200, 170, 110, 0.3);
    border-radius: 12px;
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.voted-icon {
    font-size: 1.5rem;
    color: #4ade80;
}

.view-results-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.2), rgba(180, 154, 94, 0.2));
    color: #C8AA6E;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(200, 170, 110, 0.4);
    transition: all 0.3s ease;
}

.view-results-btn:hover {
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.3), rgba(180, 154, 94, 0.3));
    border-color: rgba(200, 170, 110, 0.6);
    transform: translateY(-2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .vote-now-btn-inline {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}
/* ========================================
   FEATURED MATCH STYLING
   ======================================== */

#featured-match {
    margin-bottom: 4rem;
}

.featured-match-wrapper {
    margin-top: 1.5rem;
}

.featured-match-wrapper .match-card {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    transition: all 0.3s ease;
}

.featured-match-wrapper .match-card:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.featured-match-wrapper .match-header h3 {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-match-wrapper .status-badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
}
/* ========================================
   MATCHES GRID - 2 COLUMN LAYOUT
   ======================================== */

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .matches-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .featured-match-wrapper .match-card {
        transform: scale(1) !important;
    }
    
    .featured-match-wrapper .match-card:hover {
        transform: scale(1.02) !important;
    }
}
/* ========================================
   FEATURED MATCH WRAPPER STYLING
   ======================================== */

#featured-matchup {
    margin-bottom: 4rem;
}

.featured-match-wrapper {
    margin-top: 1.5rem;
}

.featured-match-wrapper .match-card {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    transition: all 0.3s ease;
}

.featured-match-wrapper .match-card:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.featured-match-wrapper .match-header h3 {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-match-wrapper .status-badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .featured-match-wrapper .match-card {
        transform: scale(1) !important;
    }
    
    .featured-match-wrapper .match-card:hover {
        transform: scale(1.02) !important;
    }
}