/* ==========================================================================
   FIFA VERSE - CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    --bg-primary: #070b13;
    --bg-secondary: #0c1220;
    --bg-tertiary: #121b2f;
    
    --accent-gold: #ffd700;
    --accent-gold-hover: #e6b800;
    --accent-gold-rgb: 255, 215, 0;
    
    --accent-cyan: #00f0ff;
    --accent-cyan-hover: #00cce6;
    --accent-cyan-rgb: 0, 240, 255;
    
    --text-white: #ffffff;
    --text-light: #f1f3f9;
    --text-muted: #8595ae;
    --text-dark: #445366;
    
    --success-green: #00e676;
    --error-red: #ff3d00;
    
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #b8923a 100%);
    --gradient-cyan: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
    --gradient-luxury: linear-gradient(135deg, #0f182b 0%, #070b13 100%);
    --gradient-glass: linear-gradient(135deg, rgba(16, 26, 48, 0.6) 0%, rgba(8, 12, 22, 0.8) 100%);
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-bright: rgba(255, 255, 255, 0.15);
    
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.25);
    --shadow-cyan: 0 0 30px rgba(0, 240, 255, 0.25);
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --header-height: 80px;
}

/* ==========================================================================
   RESET & SYSTEM STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border: 2px solid var(--bg-primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-white);
}

a {
    color: inherit;
    text-decoration: none;
}

li {
    list-style: none;
}

/* Utility Glower Texts */
.text-glow-gold {
    color: var(--accent-gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow-cyan {
    color: var(--accent-cyan);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   HEADER / NAVIGATION BAR
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.main-header.scrolled {
    background: rgba(7, 11, 19, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1002;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.08) rotate(-3deg);
}

.logo-accent {
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Navigation Links */
.nav-menu {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Mobile Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    position: relative;
    transition: background-color 0.3s;
}

.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    left: 0;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 120px);
    padding-bottom: 80px;
    background-image: url('stadium_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(7, 11, 19, 0.25) 0%, rgba(7, 11, 19, 0.85) 60%, rgba(7, 11, 19, 0.98) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: var(--text-light);
    max-width: 800px;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* COUNTDOWN TIMER STYLING */
.countdown-wrapper {
    background: rgba(12, 18, 32, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem 3rem;
    margin-bottom: 4.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    max-width: 600px;
    width: 100%;
}

.countdown-title {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.countdown-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ==========================================================================
   GIVEAWAY CARDS
   ========================================================================== */
.giveaway-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    width: 100%;
    max-width: 1000px;
}

.raffle-card {
    position: relative;
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow-element {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.card-tickets:hover .card-glow-element {
    opacity: 1;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(255, 215, 0, 0.06), transparent 40%);
}

.card-bundle:hover .card-glow-element {
    opacity: 1;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(0, 240, 255, 0.06), transparent 40%);
}

.raffle-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-bright);
}

.card-tickets:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.1);
}

.card-bundle:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 240, 255, 0.1);
}

/* Card Content details */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.card-tickets .card-icon-wrapper {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.card-bundle .card-icon-wrapper {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.card-icon {
    width: 32px;
    height: 32px;
}

.raffle-card .card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.raffle-card .card-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.card-winner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
}

.card-tickets .card-winner-badge {
    color: var(--accent-gold);
    border-color: rgba(255, 215, 0, 0.15);
    background: rgba(255, 215, 0, 0.05);
}

.card-bundle .card-winner-badge {
    color: var(--accent-cyan);
    border-color: rgba(0, 240, 255, 0.15);
    background: rgba(0, 240, 255, 0.05);
}

.card-price-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
}

/* Premium Buttons */
.btn {
    width: 100%;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-gold {
    background: var(--gradient-gold);
    color: #000000;
}

.btn-gold:hover {
    background: var(--accent-gold-hover);
    box-shadow: var(--shadow-gold);
    transform: scale(1.02);
}

.btn-cyan {
    background: var(--gradient-cyan);
    color: #000000;
}

.btn-cyan:hover {
    background: var(--accent-cyan-hover);
    box-shadow: var(--shadow-cyan);
    transform: scale(1.02);
}

/* Shine scanning animation on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn:hover::before {
    left: 150%;
    transition: left 0.75s ease-in-out;
}

/* ==========================================================================
   GENERAL SECTIONS
   ========================================================================== */
.section {
    padding: 100px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem auto;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.step-card:hover .step-num {
    color: rgba(0, 240, 255, 0.08);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   PRIZES SECTION
   ========================================================================== */
.prizes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.prize-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.prize-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.prize-card-img-placeholder {
    width: 100%;
    aspect-ratio: 1.4;
    background: rgba(12, 18, 32, 0.65);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.prize-card:hover .prize-card-img-placeholder {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(12, 18, 32, 0.8);
}

.prize-icon-svg {
    width: 80px;
    height: 80px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.prize-card:hover .prize-icon-svg {
    transform: scale(1.1) rotate(3deg);
}

.glow-gold {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.glow-cyan {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.prize-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.prize-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   WINNER SHOWCASE
   ========================================================================== */
.winners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    min-height: 120px;
    transition: all 0.3s ease;
}

.winner-card {
    background: var(--gradient-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
    animation: cardEntrance 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardEntrance {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.winner-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.winner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-glass-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-cyan);
    font-size: 0.9rem;
}

.winner-info {
    flex-grow: 1;
}

.winner-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-white);
}

.winner-country {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0.15rem 0 0.4rem 0;
}

.winner-prize {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold);
}

/* Winner Search & Load More Styling */
.search-winners-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

.search-bar-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0 1.25rem;
    transition: all 0.3s ease;
}

.search-bar-container:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.search-bar-container:focus-within .search-icon {
    color: var(--accent-cyan);
}

#winner-search-input {
    width: 100%;
    padding: 1.1rem 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 1rem;
}

#winner-search-input::placeholder {
    color: var(--text-dark);
}

.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

.btn-load-more {
    max-width: 250px;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-load-more:hover {
    background: var(--gradient-cyan);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-cyan);
}


/* ==========================================================================
   SOCIAL PROOF SECTION
   ========================================================================== */
.social-proof-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    padding: 1.5rem;
}

.stat-num {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   ADVERTISEMENTS — PREMIUM MULTI-FORMAT AD SYSTEM
   ========================================================================== */

/* ── Shared base ── */
.ad-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
}

/* ── Shared text atoms ── */
.ad-label {
    font-size: 0.6rem; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.2); text-transform: uppercase;
    font-weight: 700; flex-shrink: 0;
}
.ad-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; flex: 1; }
.ad-text-large { font-size: 1rem; font-weight: 700; color: var(--text-white); }
.ad-text-small { font-size: 0.82rem; color: var(--text-muted); flex-grow: 1; }
.ad-badge { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.25); font-size: 0.62rem; padding: 0.18rem 0.5rem; border-radius: 4px; border: 1px solid rgba(255,255,255,0.08); font-weight: 700; letter-spacing: 0.04em; }

/* ── 1. LEADERBOARD — top of every page (slim, unobtrusive) ── */
.top-ad {
    margin-top: var(--header-height);
    padding: 0.6rem 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.top-ad .ad-container {
    max-width: 970px; width: 100%;
    background: rgba(10,16,28,0.9);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.7rem 1.25rem;
    display: flex; align-items: center; gap: 1rem;
    position: relative; overflow: hidden;
}

/* ── 2. IN-CONTENT RECTANGLE — mid-page, highest CTR ── */
.in-content-ad {
    padding: 2rem 1.5rem;
}
.in-content-ad .ad-container {
    max-width: 760px; width: 100%;
    background: linear-gradient(135deg, rgba(16,22,38,0.98) 0%, rgba(10,14,26,0.98) 100%);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    display: flex; align-items: center; gap: 1.5rem;
    position: relative; overflow: hidden;
}
.in-content-ad .ad-container::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--gradient-gold);
    border-radius: 16px 0 0 16px;
}
.ad-icon-slot { font-size: 2.2rem; flex-shrink: 0; line-height: 1; }
.ad-body { flex: 1; }
.ad-body .ad-eyebrow { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 0.3rem; }
.ad-body .ad-headline { font-size: 1rem; font-weight: 700; color: var(--text-white); line-height: 1.3; margin-bottom: 0.2rem; }
.ad-body .ad-sub { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }
.ad-cta-btn {
    flex-shrink: 0;
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    background: var(--gradient-gold); color: #000;
    border-radius: 8px; font-size: 0.78rem; font-weight: 800;
    text-decoration: none; white-space: nowrap;
    border: none; cursor: pointer;
    transition: all 0.2s ease;
}
.ad-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,215,0,0.3); }
.ad-badge-corner {
    position: absolute; top: 0.6rem; right: 0.75rem;
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.22);
    font-size: 0.56rem; font-weight: 700; letter-spacing: 0.06em;
    padding: 0.12rem 0.45rem; border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.07); text-transform: uppercase;
}

/* ── 3. NATIVE IN-FEED — blends into dugout news list ── */
.ad-native-card {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255,215,0,0.02);
    border: 1px dashed rgba(255,215,0,0.15);
    border-radius: 14px;
    position: relative;
    text-decoration: none;
    transition: all 0.25s ease;
}
.ad-native-card:hover {
    border-color: var(--accent-gold);
    background: rgba(255,215,0,0.04);
}
.ad-native-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-native-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.ad-native-eyebrow {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
}
.ad-native-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
}
.ad-native-desc {
    font-size: 0.74rem;
    color: var(--text-muted);
    line-height: 1.35;
}
.ad-native-cta {
    flex-shrink: 0;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease;
}
.ad-native-cta:hover {
    transform: translateX(3px);
}
.ad-native-badge {
    position: absolute;
    top: 0.45rem;
    right: 0.6rem;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 640px) {
    .ad-native-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }
    .ad-native-icon {
        font-size: 1.5rem;
    }
    .ad-native-cta {
        align-self: flex-end;
    }
}

/* ── 4. SIDEBAR AD — article page right column ── */
.ad-sidebar-unit {
    margin-top: 1.5rem;
    background: linear-gradient(160deg, rgba(14,20,36,0.98) 0%, rgba(10,14,26,0.98) 100%);
    border: 1px solid rgba(255,215,0,0.1);
    border-radius: 14px; padding: 1.25rem;
    position: relative; overflow: hidden;
}
.ad-sidebar-unit::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gradient-gold); border-radius: 0 0 14px 14px; }
.ad-sidebar-unit .ad-label { display: block; margin-bottom: 0.85rem; }
.ad-sidebar-icon { font-size: 2rem; margin-bottom: 0.6rem; display: block; }
.ad-sidebar-headline { font-size: 0.92rem; font-weight: 700; color: var(--text-white); line-height: 1.35; margin-bottom: 0.5rem; }
.ad-sidebar-sub { font-size: 0.76rem; color: var(--text-muted); line-height: 1.4; margin-bottom: 1rem; }
.ad-sidebar-cta { display: block; text-align: center; padding: 0.65rem 1rem; background: var(--gradient-gold); color: #000; border-radius: 8px; font-size: 0.78rem; font-weight: 800; text-decoration: none; transition: all 0.2s ease; }
.ad-sidebar-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,215,0,0.3); }

/* ── 5. FOOTER BANNER — above footer ── */
.footer-ad {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-ad .ad-container {
    max-width: 970px; width: 100%;
    background: rgba(10,16,28,0.7);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    position: relative; overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .in-content-ad .ad-container { flex-direction: column; text-align: center; gap: 1rem; }
    .in-content-ad .ad-container::before { width: 100%; height: 4px; border-radius: 16px 16px 0 0; }
    .ad-cta-btn { width: 100%; justify-content: center; }
    .ad-icon-slot { display: none; }
    .ad-sidebar-unit { display: none; }
    .ad-native-img { width: 90px; min-width: 90px; height: 90px; font-size: 1.8rem; }
    .top-ad .ad-container, .footer-ad .ad-container { flex-wrap: wrap; gap: 0.5rem; }
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
    position: relative;
    padding: 140px 0;
    background-image: url('stadium_background.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    z-index: 1;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 19, 0.95) 0%, rgba(7, 11, 19, 0.7) 50%, rgba(7, 11, 19, 0.95) 100%);
    z-index: -1;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 650px;
    margin: 0 auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background: #04070c;
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-glass);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    margin-bottom: 4rem;
    max-width: 400px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4.5rem;
}

.footer-links-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2.5rem;
    text-align: center;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

/* ── Social Media Icons ── */
.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-social-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-right: 0.25rem;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.social-icon-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
    display: block;
}
.social-icon-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
    color: #fff;
}
.social-icon-btn:hover img { transform: scale(1.15); }

/* Brand hover colours */
.social-icon-btn.si-instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 6px 20px rgba(220,39,67,0.35);
}
.social-icon-btn.si-youtube:hover {
    background: #FF0000;
    box-shadow: 0 6px 20px rgba(255,0,0,0.35);
}
.social-icon-btn.si-facebook:hover {
    background: #1877F2;
    box-shadow: 0 6px 20px rgba(24,119,242,0.35);
}
.social-icon-btn.si-x:hover {
    background: #000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.15) !important;
}
.social-icon-btn.si-tiktok:hover {
    background: linear-gradient(135deg, #010101 0%, #EE1D52 50%, #69C9D0 100%);
    box-shadow: 0 6px 20px rgba(238,29,82,0.35);
}

.footer-copyright {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Responsive social row */
@media (max-width: 480px) {
    .footer-social-label { display: none; }
    .social-icon-btn { width: 26px; height: 26px; }
}


/* ==========================================================================
   PREMIUM DIALOG / MODAL FORM STYLING
   ========================================================================== */
.raffle-modal {
    position: fixed;
    inset: 0;
    margin: auto;
    background: transparent;
    border: none;
    padding: 0;
    max-width: 650px;
    width: calc(100% - 32px);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    overflow: visible;
    z-index: 1100;
}

/* Native backdrop styling */
.raffle-modal::backdrop {
    background-color: rgba(4, 7, 12, 0);
    backdrop-filter: blur(0px);
    /* Set up transition variables for the backdrop */
    transition: 
        display 0.4s allow-discrete,
        overlay 0.4s allow-discrete,
        background-color 0.4s ease-out,
        backdrop-filter 0.4s ease-out;
}

.raffle-modal[open]::backdrop {
    background-color: rgba(4, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    
    @starting-style {
        background-color: rgba(4, 7, 12, 0);
        backdrop-filter: blur(0px);
    }
}

/* Modal Wrapper Styling */
.modal-wrapper {
    position: relative;
    background: var(--gradient-luxury);
    border: 1px solid var(--border-glass-bright);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    overflow: hidden;
}

/* Animation triggers for modal content */
.raffle-modal {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    transition: 
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        display 0.4s allow-discrete,
        overlay 0.4s allow-discrete;
}

.raffle-modal[open] {
    opacity: 1;
    transform: scale(1) translateY(0);
    
    @starting-style {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
}

/* Respect user's motion options */
@media (prefers-reduced-motion: reduce) {
    .raffle-modal, .raffle-modal::backdrop {
        transition-duration: 0.1s !important;
        transform: none !important;
    }
    .raffle-modal[open] {
        @starting-style {
            transform: none !important;
        }
    }
}

/* Close Button */
.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: all 0.2s ease;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border-color: var(--border-glass-bright);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    margin: 0 auto 1.25rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon-badge svg {
    width: 34px;
    height: 34px;
}

.modal-icon-gold {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-icon-cyan {
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.2);
}

.modal-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FORM FIELDS STYLING */
.raffle-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Make full name and email span 2 columns on larger screens */
.form-group:nth-child(1),
.form-group:nth-child(2) {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.required-asterisk {
    color: var(--accent-gold);
}

.optional-label {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.input-wrapper {
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
    background: var(--bg-tertiary);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

/* custom dropdown arrow for select elements */
.form-group select-wrapper::after {
    content: '▼';
    font-size: 0.7rem;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

/* Checkbox alignment */
.form-group-checkbox {
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-custom {
    min-width: 20px;
    height: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.checkbox-container:hover input ~ .checkbox-custom {
    border-color: var(--accent-cyan);
}

.checkbox-container input:checked ~ .checkbox-custom {
    background: var(--accent-cyan);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkbox-custom::after {
    display: block;
}

.checkbox-label a {
    color: var(--accent-gold);
    text-decoration: underline;
    transition: color 0.2s;
}

.checkbox-label a:hover {
    color: var(--text-white);
}

/* Input Error validations styling */
.input-wrapper.invalid input,
.input-wrapper.invalid select,
.form-group-checkbox.invalid .checkbox-custom {
    border-color: var(--error-red);
    box-shadow: 0 0 10px rgba(255, 61, 0, 0.15);
}

.error-msg {
    display: none;
    font-size: 0.8rem;
    color: var(--error-red);
    margin-top: 0.4rem;
}

.input-wrapper.invalid .error-msg,
.form-group-checkbox.invalid .error-msg {
    display: block;
}

/* Form submission button with price tag */
.btn-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-cyan);
    color: #000000;
    margin-top: 1rem;
    padding: 1.1rem 2.5rem;
}

.btn-submit:hover {
    background: var(--accent-cyan-hover);
    box-shadow: var(--shadow-cyan);
}

.submit-price-tag {
    background: rgba(0, 0, 0, 0.15);
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0;
}

/* Shake animation for validation errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.shake {
    animation: shake 0.4s ease-in-out;
}

/* SUCCESS OVERLAY (MODAL CONFIRMATION) */
.success-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-luxury);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.success-content {
    text-align: center;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.success-overlay.active .success-content {
    transform: translateY(0);
}

.success-icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.25);
    color: var(--success-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.2);
}

.success-icon-badge svg {
    width: 42px;
    height: 42px;
}

.success-content h3 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.success-stats {
    display: flex;
    gap: 2rem;
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 2.5rem;
}

.success-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.success-stat-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.success-stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.btn-success-close {
    background: var(--text-white);
    color: #000000;
    font-weight: 800;
    max-width: 200px;
}

.btn-success-close:hover {
    background: var(--text-light);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.25);
    transform: scale(1.03);
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.85; box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE FIRST RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .giveaway-cards-grid {
        gap: 1.5rem;
    }
    .steps-grid, .prizes-grid, .winners-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Sticky Mobile Navigation */
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-glass);
        padding: 100px 2rem 40px 2rem;
        z-index: 1001;
    }
    
    .nav-menu.open {
        right: 0;
        box-shadow: -20px 0 60px rgba(0,0,0,0.8);
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
    }
    
    .menu-toggle[aria-expanded="true"] .hamburger {
        background-color: transparent;
    }
    
    .menu-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    /* Layouts styling */
    .giveaway-cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .raffle-card {
        padding: 2.5rem 2rem;
    }
    
    .countdown-wrapper {
        padding: 1.25rem 1.5rem;
    }
    
    .countdown-grid {
        gap: 0.75rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
    }
    
    .ad-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .ad-container {
        padding: 1.25rem 1.5rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .modal-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .steps-grid, .prizes-grid, .winners-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .countdown-num {
        font-size: 2rem;
    }
    
    .modal-wrapper {
        padding: 2.5rem 1.25rem;
    }
}

/* ==========================================================================
   UNIFIED SOCIAL HUB (LATEST FROM FIFA VERSE)
   ========================================================================== */
.social-hub-container {
    width: 100%;
    margin-top: 5rem;
    padding: 3rem 2.5rem;
    background: var(--gradient-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 5;
    text-align: center;
}

.social-hub-header {
    margin-bottom: 2.5rem;
}

.social-hub-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.social-hub-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Social Tabs */
.social-tabs {
    display: inline-flex;
    background: rgba(12, 18, 32, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 0.4rem;
    margin-bottom: 3rem;
    gap: 0.5rem;
}

.social-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-tab-btn:hover {
    color: var(--text-white);
}

.social-tab-btn.active {
    background: var(--gradient-cyan);
    color: #000000;
    box-shadow: var(--shadow-cyan);
}

/* Carousel Viewport */
.social-carousel-viewport {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 2.5rem;
}

.social-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0.5rem;
    cursor: grab;
}

.social-carousel-track-container:active {
    cursor: grabbing;
}

.social-carousel-track {
    display: flex;
    gap: 1.75rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Social Cards styling */
.social-post-card {
    flex: 0 0 320px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
    user-select: none;
}

.social-post-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-bright);
}

.card-instagram-border {
    position: relative;
}
.card-instagram-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}
.social-post-card:hover.card-instagram-border::after {
    opacity: 0.85;
}

.card-x-border {
    position: relative;
}
.card-x-border::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, var(--accent-cyan) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.15;
    transition: opacity 0.3s ease;
}
.social-post-card:hover.card-x-border::after {
    opacity: 0.6;
}

/* Card Header */
.social-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.social-user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1.5px solid var(--border-glass-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent-gold);
}

.social-user-details {
    display: flex;
    flex-direction: column;
}

.social-username {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.social-time {
    font-size: 0.75rem;
    color: var(--text-dark);
}

.social-platform-badge {
    width: 22px;
    height: 22px;
    color: var(--text-muted);
}

.card-instagram-border .social-platform-badge {
    color: #e1306c;
}

.card-x-border .social-platform-badge {
    color: var(--text-white);
}

/* Card Body */
.social-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-media-placeholder {
    width: 100%;
    aspect-ratio: 1.6;
    background: rgba(18, 27, 47, 0.4);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
}

.social-media-bg-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
    z-index: 1;
}

.social-media-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-media-overlay-type {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    z-index: 2;
    text-transform: uppercase;
    color: var(--text-white);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    word-break: break-word;
}

/* Card Footer Stats */
.social-card-footer {
    display: flex;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.social-stat-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.social-stat-item svg {
    width: 14px;
    height: 14px;
}

/* Carousel Buttons */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(12, 18, 32, 0.8);
    border: 1px solid var(--border-glass-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.carousel-nav-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
}

.prev-btn {
    left: -22px;
}

.next-btn {
    right: -22px;
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Dots Indicators */
.social-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-cyan);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Follow Buttons Footer */
.social-follow-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-social-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-white);
}

.btn-instagram:hover {
    box-shadow: 0 0 25px rgba(220, 39, 67, 0.4);
    transform: translateY(-2px);
}

.btn-x {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass-bright);
    color: var(--text-white);
}

.btn-x:hover {
    background: #000000;
    border-color: var(--accent-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-2px);
}

.social-btn-icon {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   THE DUGOUT FOOTBALL MEDIA HUB
   ========================================================================== */
.dugout-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.dugout-header {
    margin-bottom: 3.5rem;
    text-align: center;
}

/* Controls: Search and Filter category pills */
.dugout-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.dugout-search-bar {
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 0 1.25rem;
    transition: all 0.3s ease;
}

.dugout-search-bar:focus-within {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.dugout-search-bar .search-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    margin-right: 0.75rem;
}

.dugout-search-bar:focus-within .search-icon {
    color: var(--accent-gold);
}

#dugout-search-input {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

#dugout-search-input::placeholder {
    color: var(--text-dark);
}

/* Category Filter Pills */
.dugout-categories {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.category-pill {
    background: rgba(12, 18, 32, 0.6);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-pill:hover {
    border-color: var(--border-glass-bright);
    color: var(--text-white);
}

.category-pill.active {
    background: var(--gradient-gold);
    border-color: var(--accent-gold);
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15);
}

/* Main Grid Layout */
.dugout-grid-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 2.5rem;
    align-items: start;
}

.dugout-main-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Featured Article Card Layout */
.dugout-featured-card {
    background: var(--gradient-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.dugout-featured-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-bright);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.05);
}

.featured-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 320px;
    background: var(--bg-tertiary);
}

.featured-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 50%, rgba(12, 18, 32, 0.95));
}

.breaking-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--error-red);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.4);
    text-transform: uppercase;
}

.featured-content {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.story-meta-row {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.story-category {
    color: var(--accent-gold);
}

.featured-content h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.featured-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-read-more {
    width: auto;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-glass-bright);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more:hover {
    background: var(--gradient-gold);
    color: #000000;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-read-more svg {
    width: 16px;
    height: 16px;
}

/* Secondary Articles Sub-grid */
.dugout-articles-subgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.dugout-article-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
}

.dugout-article-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.article-card-img {
    width: 100%;
    aspect-ratio: 1.8;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

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

.dugout-article-card:hover .article-card-img img {
    transform: scale(1.05);
}

.article-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-card-content h3 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    flex-grow: 1;
}

.article-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Sidebar Columns Widget */
.dugout-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-widget {
    background: var(--gradient-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: var(--shadow-premium);
}

.widget-title {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-white);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

/* Transfer Watch entries styling */
.transfer-feed {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

/* Custom mini scrollbar for widget feeds */
.transfer-feed::-webkit-scrollbar,
.sidebar-social-feed::-webkit-scrollbar {
    width: 4px;
}
.transfer-feed::-webkit-scrollbar-track,
.sidebar-social-feed::-webkit-scrollbar-track {
    background: transparent;
}
.transfer-feed::-webkit-scrollbar-thumb,
.sidebar-social-feed::-webkit-scrollbar-thumb {
    background: var(--border-glass-bright);
    border-radius: 10px;
}

.transfer-item {
    display: flex;
    gap: 0.75rem;
    background: rgba(12, 18, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.85rem;
    align-items: center;
}

.transfer-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transfer-badge-icon svg {
    width: 18px;
    height: 18px;
}

.transfer-info {
    display: flex;
    flex-direction: column;
}

.transfer-player-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.transfer-rumour-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 0.15rem;
}

/* Sidebar Social Stream Widget */
.sidebar-social-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.sidebar-social-card {
    background: rgba(12, 18, 32, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    cursor: pointer;
    transition: border-color 0.2s;
}

.sidebar-social-card:hover {
    border-color: var(--border-glass-bright);
}

.sidebar-social-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-social-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.sidebar-social-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--accent-cyan);
}

.sidebar-social-caption {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    word-break: break-word;
}

/* ==========================================================================
   ARTICLE DETAIL DIALOG
   ========================================================================== */
.dugout-article-modal {
    max-width: 800px !important;
}

.article-detail-img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-glass);
}

.article-detail-header {
    margin-bottom: 2rem;
}

.article-detail-header h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    line-height: 1.2;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
}

.article-author-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.article-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-gold);
}

.article-author-meta {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    color: var(--text-white);
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.article-detail-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

.article-detail-body p {
    margin-bottom: 1.5rem;
}

.article-detail-body h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* ==========================================================================
   RESPONSIVENESS BREAKPOINTS FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 1024px) {
    .dugout-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .dugout-featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-img-wrapper {
        min-height: 240px;
    }
    
    .featured-img-overlay {
        background: linear-gradient(180deg, transparent 50%, rgba(12, 18, 32, 0.95));
    }
    
    .prev-btn {
        left: -10px;
    }
    
    .next-btn {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .social-hub-container {
        padding: 2.5rem 1.5rem;
    }
    
    .social-carousel-viewport {
        padding: 0 0.5rem;
    }
    
    .prev-btn, .next-btn {
        display: none !important; /* Hide arrows on mobile viewports */
    }
    
    .dugout-articles-subgrid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 2rem 1.5rem;
    }
}

/* Standalone Social Hub Section styles */
.social-hub-section {
    padding: 80px 0;
}
.social-hub-section .social-hub-container {
    margin-top: 0;
}


/* ==========================================================================
   11. FIXTURES & STANDINGS SECTIONS
   ========================================================================== */
.fixtures-date-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}
.date-pill {
    background: rgba(16, 26, 48, 0.5);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
}
.date-pill:hover, .date-pill.active {
    border-color: var(--accent-cyan);
    color: var(--text-white);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}
.date-pill.active .pill-live-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--error-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--error-red);
    animation: pulse-live 1.5s infinite;
}
@keyframes pulse-live {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(0.9); opacity: 1; }
}
.pill-day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.pill-date {
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: 0.15rem;
}

.fixtures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}
.match-card {
    background: var(--gradient-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}
.match-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glass-bright);
    box-shadow: var(--shadow-premium);
}
.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    transition: background 0.3s ease;
}
.match-card.live::before {
    background: var(--error-red);
}
.match-card.ft::before {
    background: var(--text-dark);
}
.match-card.upcoming::before {
    background: var(--accent-cyan);
}
.match-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.match-group {
    color: var(--accent-gold);
}
.match-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
}
.match-status.live {
    background: rgba(255, 61, 0, 0.1);
    color: var(--error-red);
    border: 1px solid rgba(255, 61, 0, 0.2);
    animation: text-pulse 2s infinite;
}
@keyframes text-pulse {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}
.match-status.ft {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}
.match-status.upcoming {
    background: rgba(0, 240, 255, 0.05);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 240, 255, 0.1);
}
.match-teams {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0.5rem 0;
}
.match-team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.team-flag {
    font-size: 1.5rem;
    line-height: 1;
}
.team-name {
    font-weight: 600;
    color: var(--text-light);
}
.team-score {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-white);
    width: 30px;
    text-align: center;
}
.match-team-row.winner .team-name, .match-team-row.winner .team-score {
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}
.match-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.match-venue {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 60%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.btn-match-action {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    width: auto;
    text-transform: uppercase;
}

.group-selector-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.group-select-label {
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.custom-select-container {
    position: relative;
    display: inline-block;
}
.group-select-dropdown {
    appearance: none;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass-bright);
    color: var(--text-white);
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}
.group-select-dropdown:hover, .group-select-dropdown:focus {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}
.custom-select-container::after {
    content: '▼';
    font-size: 0.65rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.standings-table-container {
    background: var(--gradient-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow-x: auto;
    box-shadow: var(--shadow-premium);
}
.standings-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}
.standings-table th, .standings-table td {
    padding: 1rem 1.25rem;
}
.standings-table th {
    background: rgba(16, 26, 48, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.standings-table td {
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.standings-table tbody tr {
    transition: background-color 0.2s ease;
}
.standings-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.015);
}
.standings-table tbody tr.advance-zone td {
    border-left: 3px solid var(--success-green);
}
.col-rank {
    width: 60px;
    text-align: center;
    font-weight: 700;
}
.col-team {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}
.col-stat {
    text-align: center;
    width: 60px;
}
.col-pts {
    font-weight: 800;
    color: var(--accent-gold);
}
.standings-table td.col-pts {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
}

@media (max-width: 768px) {
    .fixtures-date-selector {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ==========================================================================
   ALL GROUPS STANDINGS (SINGLE SCROLLABLE GRID & JUMP NAVIGATION)
   ========================================================================== */
.all-groups-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.group-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
}

.btn-jump-group {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-jump-group:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

/* ==========================================================================
   HOMEPAGE DUGOUT CAROUSEL & STANDALONE PAGE LAYOUT
   ========================================================================== */
.dugout-carousel-viewport {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.dugout-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0.5rem;
    cursor: grab;
}

.dugout-carousel-track-container:active {
    cursor: grabbing;
}

.dugout-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.dugout-carousel-track .dugout-article-card {
    flex: 0 0 380px;
    max-width: 100%;
}

.dugout-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.dugout-carousel-dots .carousel-dot.active {
    background: var(--accent-gold);
    box-shadow: 0 0 8px var(--accent-gold);
}

.dugout-carousel-viewport .carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(7, 11, 19, 0.9);
    border: 1px solid var(--border-glass);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.dugout-carousel-viewport .prev-btn {
    left: -25px;
}

.dugout-carousel-viewport .next-btn {
    right: -25px;
}

.dugout-carousel-viewport .carousel-nav-btn:hover {
    background: var(--gradient-gold);
    color: #000000;
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

@media (max-width: 1200px) {
    .dugout-carousel-track .dugout-article-card {
        flex: 0 0 340px;
    }
}

@media (max-width: 768px) {
    .dugout-carousel-viewport .carousel-nav-btn {
        display: none !important;
    }
    .dugout-carousel-track .dugout-article-card {
        flex: 0 0 100%;
    }
}


/* ==========================================================================
   DUGOUT PAGE RECTANGULAR NEWS BARS & IN-FEED ADS
   ========================================================================== */

/* Horizontal Rectangular Bar News Cards */
.dugout-articles-subgrid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dugout-article-card.horizontal-bar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-premium);
    min-height: 200px;
}

.dugout-article-card.horizontal-bar:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--accent-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.1);
}

.dugout-article-card.horizontal-bar .article-card-img {
    width: 260px;
    height: auto;
    min-height: 200px;
    flex-shrink: 0;
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
}

.dugout-article-card.horizontal-bar .article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dugout-article-card.horizontal-bar:hover .article-card-img img {
    transform: scale(1.06) translateX(-5px);
}

.dugout-article-card.horizontal-bar .article-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.dugout-article-card.horizontal-bar .article-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    transition: color 0.3s ease;
}

.dugout-article-card.horizontal-bar:hover .article-card-content h3 {
    color: var(--accent-gold);
}

.dugout-article-card.horizontal-bar .article-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* In-feed Ad Block Spacing */
.in-feed-ad-block {
    max-width: 480px;
    width: 100%;
    margin: 2rem auto;
    background: rgba(12, 18, 32, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 1.25rem 1.75rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: border-color 0.3s ease;
}

.in-feed-ad-block:hover {
    border-color: var(--accent-gold);
}

.in-feed-ad-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.in-feed-ad-block .ad-label {
    font-size: 0.65rem;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.in-feed-ad-block .ad-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.in-feed-ad-block .ad-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.in-feed-ad-block .ad-btn {
    padding: 0.45rem 1.25rem;
    font-size: 0.75rem;
    background: var(--gradient-gold);
    color: #000;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    transition: transform 0.2s ease;
}

.in-feed-ad-block .ad-btn:hover {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .dugout-article-card.horizontal-bar {
        flex-direction: column;
        min-height: auto;
    }
    .dugout-article-card.horizontal-bar .article-card-img {
        width: 100%;
        aspect-ratio: 1.8;
        min-height: auto;
    }
    .dugout-article-card.horizontal-bar .article-card-img img {
        height: 100%;
    }
    .in-feed-ad-content {
        flex-direction: column;
        gap: 0.75rem;
    }
}
