/* ========================================
   IL DITTA LANDING - STILE RIVOLUZIONARIO
   Bold / Premium / High Converting
   ======================================== */

/* Custom Fonts */
@font-face {
    font-family: 'TheBoldFont';
    src: url('the_bold_font/THEBOLDFONT-FREEVERSION.woff') format('woff'),
         url('the_bold_font/THEBOLDFONT-FREEVERSION.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Designer';
    src: url('Designer.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brunson';
    src: url('brunson/Brunson.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Arancione e Oro Premium */
    --primary: #FF6B00;
    --primary-dark: #E55A00;
    --primary-light: #FF9D4D;
    --primary-gradient: linear-gradient(135deg, #FF6B00 0%, #FFB347 50%, #FF6B00 100%);
    --gold: #FFD700;
    --gold-dark: #DAA520;
    --gold-light: #FFEC8B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    
    /* Dark Theme */
    --dark-bg: #0A0A0F;
    --dark-card: #12121A;
    --dark-border: #1E1E2A;
    
    --white: #FFFFFF;
    --off-white: #FFF9F0;
    --black: #0A0A0F;
    --gray-900: #1A1A24;
    --gray-800: #2A2A38;
    --gray-700: #3A3A4A;
    --gray-600: #5A5A6A;
    --gray-500: #8A8A9A;
    --gray-400: #AAAABC;
    --gray-300: #CACADE;
    --gray-200: #E0E0EE;
    --gray-100: #F5F5FF;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(255, 107, 0, 0.3);
    --shadow-gold: 0 0 40px rgba(255, 215, 0, 0.25);
    
    /* Typography */
    --font-display: 'TheBoldFont', 'Oswald', sans-serif;
    --font-designer: 'Designer', sans-serif;
    --font-brunson: 'Brunson', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

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

/* ========================================
   SVG ICONS
   ======================================== */
.warning-icon,
.fire-icon,
.ball-icon,
.lock-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.specialita-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.section-tag .fire-icon {
    width: 14px;
    height: 14px;
}

.popup-label .fire-icon,
.popup-info-text .fire-icon,
.popup-matches-label .ball-icon,
.champions-card-info .fire-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.cta-note .lock-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.legal-warning .warning-icon {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
}

/* ========================================
   HEADER
   ======================================== */

/* HEADER - NUOVO STILE MINIMAL */
.header-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
}

.header-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}

.header-logo span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 24px;
    color: #fff;
    letter-spacing: 2px;
}

.header-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.header-nav-links li a:hover {
    color: #fff;
    background: rgba(255, 107, 0, 0.15);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.header-spot-dot {
    width: 8px;
    height: 8px;
    background: #FF3B30;
    border-radius: 50%;
    animation: headerDotPulse 1.5s ease-in-out infinite;
}

@keyframes headerDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.header-spots strong {
    font-family: 'TheBoldFont', sans-serif;
    color: #FF5252;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
}

.header-cta .tg-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .header-center {
        display: none;
    }
    
    .header-logo span {
        font-size: 20px;
    }
    
    .header-spots {
        display: none;
    }
    
    .header-cta {
        padding: 8px 14px;
        font-size: 11px;
    }
    
    .header-cta .tg-icon {
        width: 16px;
        height: 16px;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
    height: var(--header-height);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
    border: 2px solid var(--primary);
}

.nav-logo span {
    font-family: 'TheBoldFont', var(--font-brunson), sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0 auto;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-menu a svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(255, 107, 0, 0.15);
}

.nav-menu a:hover svg {
    opacity: 1;
    stroke: var(--primary);
}

/* Nav Right - Spots + CTA */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-spots-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.2) 0%, rgba(255, 82, 82, 0.1) 100%);
    border: 2px solid rgba(255, 59, 48, 0.4);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #FF5252;
    position: relative;
    overflow: hidden;
    animation: spotsBadgePulse 2s ease-in-out infinite;
}

@keyframes spotsBadgePulse {
    0%, 100% { border-color: rgba(255, 59, 48, 0.4); }
    50% { border-color: rgba(255, 59, 48, 0.8); }
}

.spots-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.15), transparent);
    animation: spotsGlow 2s ease-in-out infinite;
}

@keyframes spotsGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.spots-dot {
    width: 10px;
    height: 10px;
    background: #FF3B30;
    border-radius: 50%;
    animation: spotsDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.8);
    position: relative;
    z-index: 1;
}

@keyframes spotsDot {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 59, 48, 0.8);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(255, 59, 48, 0.4);
    }
}

.spots-text {
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: #fff;
}

.spots-text strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: #FF5252;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(255, 107, 0, 0.6);
}

.nav-cta .tg-icon {
    width: 18px;
    height: 18px;
}

.nav-cta .arrow-right {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.nav-cta:hover .arrow-right {
    transform: translateX(3px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0d0d1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ========================================
   HERO CENTRATO - NUOVO LAYOUT COMPATTO
   ======================================== */
.hero-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-container-centered {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

/* Logo Hero */
.hero-logo-centered {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

/* Badge Telegram Cliccabile */
.hero-telegram-badge-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border: 2px solid #00aaff;
    padding: 12px 24px;
    border-radius: 20px;
    animation: telegramGlow 2s ease-in-out infinite;
    box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.hero-telegram-badge-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.6);
}

@keyframes telegramGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(0, 136, 204, 0.4); }
    50% { box-shadow: 0 8px 50px rgba(0, 136, 204, 0.6); }
}

.hero-telegram-badge-big .tg-icon {
    width: 28px;
    height: 28px;
    fill: #fff;
    flex-shrink: 0;
}

.hero-telegram-badge-big .badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-telegram-badge-big .badge-text span {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.hero-telegram-badge-big .badge-text strong {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.hero-telegram-badge-big .badge-text small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-align: center;
}

/* Titolo Centrale Compatto */
.hero-title-centered {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: clamp(32px, 6vw, 58px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
}

.hero-title-centered span {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-centered {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    line-height: 1.6;
    margin: 0;
}

/* Countdown Centro Compatto */
.hero-countdown-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 32px;
}

.countdown-label-center {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.2) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 0, 0.4);
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 65px;
}

.countdown-box .countdown-number {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.countdown-box small {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-divider {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: 28px;
    color: var(--primary);
    font-weight: 900;
    animation: dividerBlink 1s infinite;
}

@keyframes dividerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* Box Serie A Centrato Compatto */
.hero-seria-box-centered {
    background: linear-gradient(145deg, #0a2a4a 0%, #051525 100%);
    border: 1px solid #1a5a9a;
    border-radius: 16px;
    padding: 18px 28px;
    width: 100%;
    max-width: 580px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 136, 204, 0.1);
}

.seria-header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seria-header-row .seria-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.seria-header-row .seria-title {
    display: flex;
    flex-direction: column;
}

.seria-header-row .seria-label {
    font-size: 10px;
    color: #00d4aa;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.seria-header-row .seria-name {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: 20px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.seria-matches-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.seria-match-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 16px;
    transition: all 0.3s;
}

.seria-match-item:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-2px);
}

.seria-match-item .match-team {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 90px;
}

/* Squadra a sinistra - allineata a destra */
.seria-match-item .match-team:first-child {
    justify-content: flex-end;
}

/* Squadra a destra - allineata a sinistra */
.seria-match-item .match-team:last-child {
    justify-content: flex-start;
}

.seria-match-item .match-team img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.seria-match-item .match-team span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Bottone Telegram al posto di VS */
.match-telegram-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    flex-shrink: 0;
}

.match-telegram-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.match-telegram-btn .tg-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.seria-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seria-footer span {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    display: block;
    line-height: 1.4;
}

/* CTA dentro il box Serie A */
.seria-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #00a896 100%);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'TheBoldFont', var(--font-display);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 16px;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.seria-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.5);
}

.seria-cta-btn .tg-icon {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* CTA Centrato Compatto */
.hero-cta-centered {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: 'TheBoldFont', var(--font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-centered::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: ctaShine 2.5s infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-cta-centered:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
}

.hero-cta-centered .tg-icon {
    width: 18px;
    height: 18px;
}

/* Hide old hero container */
.hero-container {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.hero h1 {
    font-family: var(--font-brunson);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 span {
    color: var(--primary);
}

/* Override per Hero Centrato */
.hero-centered h1.hero-title-centered {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 900;
    color: #ffffff !important;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-centered h1.hero-title-centered span {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

/* ========================================
   HERO - BADGE TELEGRAM CENTRALE
   ======================================== */
.hero-telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2) 0%, rgba(0, 136, 204, 0.1) 100%);
    border: 1px solid rgba(0, 136, 204, 0.4);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 136, 204, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 136, 204, 0.6); }
}

.hero-telegram-badge .tg-icon {
    width: 24px;
    height: 24px;
    fill: #0088cc;
}

.hero-telegram-badge span {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
}

.hero-telegram-badge strong {
    color: #0088cc;
    font-size: 18px;
    font-weight: 800;
}

/* ========================================
   HERO - COUNTDOWN ORIZZONTALE CENTRALE
   ======================================== */
.hero-countdown-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-label-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-inline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 107, 0, 0.05) 100%);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 70px;
}

.countdown-block .countdown-num {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.countdown-block small {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.countdown-colon {
    font-family: 'TheBoldFont', var(--font-display);
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    animation: colonBlink 1s infinite;
}

@keyframes colonBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hide old hero-stats since we removed it */
.hero-stats {
    display: none;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    display: none;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.35);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--gold-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
}

.cta-btn .tg-icon {
    width: 20px;
    height: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    max-width: 100%;
    max-height: 550px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ========================================
   HERO CHAMPIONS CARD
   ======================================== */
.hero-champions-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border: none;
    border-radius: 24px;
    padding: 28px;
    max-width: 420px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-champions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 50%, var(--primary) 100%);
}

/* ========================================
   HERO SERIA A CARD
   ======================================== */
.hero-seria-card {
    background: linear-gradient(145deg, #1a2a4a 0%, #0d1a30 100%);
    border: 2px solid #2a5a9a;
    border-radius: 24px;
    padding: 24px;
    max-width: 440px;
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(0, 212, 170, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-seria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #2a5a9a, #00d4aa);
}

.hero-seria-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.1), transparent);
    pointer-events: none;
}

/* Hero Users Badge */
.hero-users-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.2), rgba(0, 136, 204, 0.08));
    border: 1px solid rgba(0, 136, 204, 0.4);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 20px;
    color: #00ACED;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hero-users-badge .tg-icon {
    width: 20px;
    height: 20px;
}

.hero-users-badge strong {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 18px;
    color: #fff;
}

/* Hero Countdown Center */
.hero-countdown-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: linear-gradient(145deg, rgba(0, 212, 170, 0.1), rgba(42, 90, 154, 0.1));
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.hero-countdown-center .countdown-item-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.hero-countdown-center .countdown-num {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 36px;
    color: #00d4aa;
    line-height: 1;
    text-shadow: 0 0 25px rgba(0, 212, 170, 0.6);
}

.hero-countdown-center .countdown-item-mini small {
    font-family: 'Designer', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

.hero-countdown-center .countdown-sep {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 32px;
    color: #2a5a9a;
    animation: countdownBlink 1s infinite;
}

/* Hero Serie A Box */
.hero-seria-box {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.hero-seria-box .seria-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-seria-box .seria-logo {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 8px;
}

.hero-seria-box .seria-title {
    display: flex;
    flex-direction: column;
}

.hero-seria-box .seria-label {
    font-family: 'Designer', sans-serif;
    font-size: 12px;
    color: #00d4aa;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-seria-box .seria-name {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 26px;
    color: #fff;
    letter-spacing: 2px;
}

.hero-seria-box .seria-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-seria-box .seria-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 16px 18px;
    transition: all 0.3s;
}

.hero-seria-box .seria-match:hover {
    background: rgba(0, 212, 170, 0.12);
    border-color: rgba(0, 212, 170, 0.4);
    transform: translateX(5px);
}

.hero-seria-box .match-team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.hero-seria-box .match-team.away {
    justify-content: flex-end;
}

.hero-seria-box .match-team img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.hero-seria-box .match-team span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
}

.hero-seria-box .match-vs {
    font-family: 'Designer', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 14px;
}

.hero-seria-box .seria-cta-mini {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-seria-box .seria-cta-mini span {
    font-size: 14px;
    color: #00d4aa;
    font-weight: 600;
}

/* Hero Serie A CTA */
.hero-seria-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, #00d4aa 0%, #00a896 100%);
    color: #fff;
    padding: 18px 24px;
    border-radius: 60px;
    font-family: 'TheBoldFont', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 212, 170, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-seria-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: ctaShimmer 2.5s infinite;
}

.hero-seria-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 212, 170, 0.5);
}

.hero-seria-cta .tg-icon {
    width: 22px;
    height: 22px;
}

.champions-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.champions-card-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.champions-card-title {
    display: flex;
    flex-direction: column;
}

.champions-card-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.champions-card-name {
    font-family: var(--font-brunson);
    font-size: 22px;
    color: var(--white);
}

/* Champions Date Group */
.champions-date-group {
    margin-bottom: 16px;
}

.champions-date-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.champions-date-header .date-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.champions-date-header .date-text {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
}

/* Champions Match Row */
.champions-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.champions-match:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
    transform: translateX(6px);
}

.champions-match .match-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.champions-match .match-team.away {
    justify-content: flex-end;
    text-align: right;
}

.champions-match .match-team img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.champions-match .match-team img.juve-logo {
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

.champions-match .match-team span {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.champions-match .match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 12px;
    flex-shrink: 0;
}

.champions-match .match-time {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.champions-match .match-vs {
    font-size: 9px;
    color: var(--gray-500);
    font-weight: 700;
}

/* Champions Card Info & CTA */
.champions-card-info {
    text-align: center;
    color: var(--gray-400);
    font-size: 13px;
    margin: 12px 0;
}

.champions-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.champions-card-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
}

.champions-card-cta .tg-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
    padding: 80px 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--gray-900);
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 16px;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark {
    background: var(--gray-900);
}

.section-dark .section-tag {
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary-light);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

.section-light {
    background: var(--off-white);
}

.section-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
}

/* ========================================
   SPECIALITA
   ======================================== */
.section-specialita {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.specialita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.specialita-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.specialita-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.specialita-card:hover::before {
    transform: scaleX(1);
}

.specialita-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.specialita-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
    color: var(--white);
}

.specialita-card.featured::before {
    display: none;
}

.specialita-card.featured h3 {
    color: var(--white);
}

.specialita-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.specialita-card.featured .specialita-icon svg {
    fill: var(--white);
}

.specialita-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 16px;
}

.specialita-card.featured .specialita-icon {
    background: rgba(255, 255, 255, 0.2);
}

.specialita-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.specialita-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   SEZIONE METODI - LAYOUT ALTERNATO UNICO
   ======================================== */
.section-metodi {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c00 100%);
}

.metodo-row {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    max-width: 800px;
    margin: 0 auto;
}

.metodo-row:last-child {
    border-bottom: none;
}

.metodo-row.reverse {
    flex-direction: row-reverse;
}

.metodo-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
}

.metodo-number .num {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.metodo-number.gold {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
}

.metodo-number.gold .num {
    color: #fff;
}

.metodo-content {
    flex: 1;
}

.metodo-tag {
    display: inline-block;
    font-family: 'Designer', sans-serif;
    font-size: 9px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 6px;
}

.metodo-tag.gold {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.2);
}

.metodo-title {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 0 6px 0;
    letter-spacing: 0.5px;
}

.metodo-desc {
    font-family: 'Designer', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.metodo-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.metodo-highlight svg {
    width: 14px;
    height: 14px;
    fill: #fff;
}

.metodo-highlight span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 11px;
    color: #fff;
    letter-spacing: 0.3px;
}

.metodo-highlight.gold {
    background: rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.1);
}

.metodo-highlight.gold svg {
    fill: #fff;
}

.metodo-highlight.gold span {
    color: #fff;
}

@media (max-width: 768px) {
    .section-metodi {
        padding: 40px 0;
    }
    
    .metodo-row,
    .metodo-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px 0;
    }
    
    .metodo-number {
        width: 50px;
        height: 50px;
    }
    
    .metodo-number .num {
        font-size: 1.5rem;
    }
    
    .metodo-highlight {
        justify-content: center;
    }
}

/* ========================================
   RESULTS GALLERY
   ======================================== */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-bottom: 50px;
}

.result-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 107, 0, 0.25);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    border-radius: 20px;
}

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

.result-overlay {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    background: none;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.results-cta {
    text-align: center;
}

.results-cta p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

/* ========================================
   CANALE TELEGRAM PREVIEW
   ======================================== */
.section-canale {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
}

.canale-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.canale-image {
    flex-shrink: 0;
}

.canale-image img {
    width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.canale-content {
    text-align: left;
}

.canale-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.canale-content p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.canale-content .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.canale-content .tg-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .canale-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .canale-content {
        text-align: center;
    }

    .canale-image img {
        width: 220px;
    }

    .canale-content h3 {
        font-size: 1.6rem;
    }
}

/* ========================================
   STEPS
   ======================================== */

/* COME FUNZIONA - STILE UNICO */
.section-come-funziona {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f5f0 0%, #efe8df 100%);
}

.funziona-header {
    text-align: center;
    margin-bottom: 40px;
}

.funziona-badge {
    display: inline-block;
    font-family: 'Designer', sans-serif;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 30px;
    margin-bottom: 12px;
}

.funziona-title {
    font-family: 'TheBoldFont', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin: 0;
}

.funziona-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.funziona-step {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    flex: 1;
    max-width: 280px;
}

.funziona-num {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border-radius: 12px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.funziona-info h3 {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.funziona-info p {
    font-family: 'Designer', sans-serif;
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.funziona-divider {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .funziona-steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .funziona-step {
        max-width: 100%;
        width: 100%;
    }
    
    .funziona-divider {
        width: 2px;
        height: 20px;
    }
}

.steps-horizontal {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--white);
    border: none;
    border-radius: 24px;
    padding: 40px 32px 32px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(255, 107, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 179, 71, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    opacity: 0.5;
}

/* ========================================
   PERCHE SBANCA
   ======================================== */
.section-green {
    padding: 80px 0;
}

/* CHI SONO - STILE UNICO */
.section-chi-sono {
    padding: 70px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0a0a12 100%);
}

.chi-sono-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    max-width: 950px;
    margin: 0 auto;
}

.chi-sono-foto {
    position: relative;
}

.chi-sono-foto img {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 107, 0, 0.3);
}

.chi-sono-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    padding: 12px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.chi-sono-badge .badge-num {
    display: block;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.5rem;
    color: #fff;
}

.chi-sono-badge .badge-text {
    font-family: 'Designer', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chi-sono-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chi-sono-tag {
    display: inline-block;
    font-family: 'Designer', sans-serif;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 30px;
    width: fit-content;
}

.chi-sono-title {
    font-family: 'TheBoldFont', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.chi-sono-title span {
    color: var(--primary);
}

.chi-sono-desc {
    font-family: 'Designer', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.chi-sono-desc strong {
    color: #fff;
}

.chi-sono-punti {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 8px 0;
}

.punto {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    transition: all 0.3s;
}

.punto:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.2);
}

.punto-icon {
    font-size: 1.2rem;
}

.punto span:last-child {
    font-family: 'Designer', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.chi-sono-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border: none;
    border-radius: 12px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.4);
    width: fit-content;
    margin-top: 8px;
}

.chi-sono-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 0, 0.5);
}

.chi-sono-cta .tg-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .chi-sono-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .chi-sono-foto {
        display: flex;
        justify-content: center;
    }
    
    .chi-sono-foto img {
        max-width: 250px;
    }
    
    .chi-sono-badge {
        right: auto;
        left: 50%;
        transform: translateX(60px);
    }
    
    .chi-sono-tag,
    .chi-sono-cta {
        margin-left: auto;
        margin-right: auto;
    }
    
    .punto {
        justify-content: center;
    }
}

.perche-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.perche-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.perche-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.perche-text h2 span {
    color: var(--gray-900);
}

.perche-text > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.perche-list {
    list-style: none;
    margin-bottom: 32px;
}

.perche-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 12px;
}

.check-icon {
    background: var(--white);
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.cta-btn-dark {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-dark:hover {
    background: var(--black);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.perche-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   REVIEWS
   ======================================== */

/* RECENSIONI - STILE UNICO */
.section-recensioni {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f5f0 0%, #efe8df 100%);
}

.recensioni-header {
    text-align: center;
    margin-bottom: 40px;
}

.recensioni-badge {
    display: inline-block;
    font-family: 'Designer', sans-serif;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 30px;
    margin-bottom: 12px;
}

.recensioni-title {
    font-family: 'TheBoldFont', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1a1a1a;
    margin: 0;
}

.recensioni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.recensione-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.recensione-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 0, 0.12);
}

.recensione-stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.recensione-text {
    font-family: 'Designer', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-style: italic;
}

.recensione-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #eee;
}

.author-initial {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 12px;
}

.recensione-author strong {
    display: block;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 13px;
    color: #1a1a1a;
}

.recensione-author span {
    font-family: 'Designer', sans-serif;
    font-size: 11px;
    color: #888;
}

@media (max-width: 900px) {
    .recensioni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .recensioni-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.12);
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 14px;
}

.author-info span {
    color: var(--gray-500);
    font-size: 12px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    font-family: var(--font-brunson);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content > p {
    color: var(--gray-400);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btn-big {
    padding: 20px 48px;
    font-size: 18px;
}

.cta-note {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 20px;
}

/* ========================================
   LEGAL POPUP - Stile compatto moderno
   ======================================== */
.legal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-popup.hidden {
    display: none;
}

.legal-popup-content {
    text-align: center;
    max-width: 380px;
    width: 100%;
    background: rgba(15, 15, 20, 0.98);
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(255, 107, 0, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 107, 0, 0.1);
    position: relative;
    animation: popupSlideIn 0.4s ease-out;
}

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

.legal-logo {
    margin-bottom: 16px;
}

.legal-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4);
    border: 2px solid var(--primary);
    object-fit: cover;
}

.legal-age-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF3B30, #D32F2F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.4);
}

.legal-age-circle span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 24px;
    color: #fff;
}

.legal-popup-content h2 {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.legal-popup-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.legal-terms {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.legal-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.legal-terms a:hover {
    text-decoration: underline;
}

.legal-accept-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
    margin-bottom: 16px;
}

.legal-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.legal-accept-btn:active {
    transform: scale(0.98);
}

.legal-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.legal-warning .warning-icon {
    width: 14px;
    height: 14px;
    color: #FFC107;
}

/* ========================================
   CHAMPIONS POPUP
   ======================================== */
.champions-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.champions-popup.hidden {
    display: none;
}

.champions-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
}

.champions-popup .popup-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, #1a1a28 0%, #0a0a12 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--gold)) 1;
    border-radius: 24px;
    padding: 28px;
    max-width: 460px;
    width: 100%;
    box-shadow: 
        0 0 60px rgba(255, 107, 0, 0.3),
        0 25px 80px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: popupSlideIn 0.4s ease-out;
    overflow: hidden;
}

.champions-popup .popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(255, 107, 0, 0.15), transparent);
    pointer-events: none;
}

@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.champions-popup .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.champions-popup .popup-close svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.champions-popup .popup-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

.champions-popup .popup-close:hover svg {
    color: #fff;
}

.champions-popup .popup-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.champions-popup .popup-logo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    to { box-shadow: 0 0 40px rgba(255, 215, 0, 0.6); }
}

.champions-popup .popup-title-wrapper {
    flex: 1;
}

.champions-popup .popup-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.champions-popup .popup-label .fire-icon {
    width: 14px;
    height: 14px;
}

.champions-popup .popup-title {
    font-family: 'TheBoldFont', var(--font-brunson), sans-serif;
    font-size: 26px;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

/* Popup Urgency Bar */
.popup-urgency-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 14px;
    padding: 14px 18px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.popup-urgency-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: urgencyShimmer 3s infinite;
}

@keyframes urgencyShimmer {
    100% { left: 100%; }
}

.popup-countdown-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.popup-countdown-mini svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    animation: clockPulse 1s ease-in-out infinite;
}

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

.popup-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.popup-spots-dot {
    width: 10px;
    height: 10px;
    background: #FF5252;
    border-radius: 50%;
    animation: spotPulse 1.5s infinite;
    box-shadow: 0 0 10px rgba(255, 82, 82, 0.6);
}

@keyframes spotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px rgba(255, 82, 82, 0.6); }
    50% { opacity: 0.7; transform: scale(1.3); box-shadow: 0 0 20px rgba(255, 82, 82, 0.3); }
}

.popup-spots strong {
    color: #FF5252;
    font-weight: 700;
}

/* Popup Description */
.popup-description {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    text-align: center;
}

.popup-description p {
    color: var(--gray-300);
    font-size: 14px;
    margin: 0;
}

.popup-description strong {
    color: var(--primary);
}

/* Popup Win Card */
.popup-win-card {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 107, 0, 0.05));
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.popup-win-card .win-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.popup-win-card .win-match {
    text-align: center;
}

.popup-win-card .win-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.popup-win-card .win-teams img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.popup-win-card .win-teams span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.popup-win-card .win-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.popup-win-card .win-score {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
}

.popup-win-card .win-scorer {
    color: var(--gray-300);
    font-size: 13px;
}

/* Popup Matches Grid */
.popup-matches-label {
    color: var(--gray-400);
    font-size: 12px;
    margin-bottom: 10px;
}

.popup-matches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.popup-match-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.popup-match-mini:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary);
}

.popup-match-mini img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.popup-match-mini img.juve-logo {
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

.popup-match-mini span {
    color: var(--gray-500);
    font-size: 10px;
}

/* Popup Main Match (Area Principale) */
.popup-main-match {
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.12), rgba(255, 215, 0, 0.06));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.popup-main-match::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent);
    pointer-events: none;
}

.popup-main-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.popup-main-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-main-team img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.popup-main-team span {
    font-family: 'TheBoldFont', var(--font-display), sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.popup-main-vs {
    font-family: 'Designer', var(--font-display), sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.popup-prediction-hidden {
    text-align: center;
    position: relative;
    z-index: 1;
}

.popup-prediction-hidden .prediction-label {
    font-family: 'Designer', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.popup-prediction-hidden .prediction-reveal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.25), rgba(255, 215, 0, 0.15));
    border: 2px dashed var(--gold);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'TheBoldFont', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-border 2s infinite;
}

.popup-prediction-hidden .prediction-reveal:hover {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-style: solid;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.4);
}

.popup-prediction-hidden .prediction-reveal .tg-icon {
    width: 22px;
    height: 22px;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

/* Popup Other Matches */
.popup-other-matches {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.popup-other-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s;
}

.popup-other-match:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.3);
}

.popup-other-match img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.popup-other-match img.juve-logo {
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

.popup-other-match span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.popup-info-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 10px;
}

.popup-info-text .fire-icon {
    width: 16px;
    height: 16px;
}

/* Popup CTA */
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C00 50%, var(--gold) 100%);
    background-size: 200% 100%;
    color: var(--white);
    padding: 18px 24px;
    border-radius: 60px;
    font-family: 'TheBoldFont', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 
        0 4px 30px rgba(255, 107, 0, 0.5),
        0 0 0 0 rgba(255, 107, 0, 0);
    position: relative;
    overflow: hidden;
    animation: ctaGradient 3s ease infinite;
}

@keyframes ctaGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.popup-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: ctaShimmer 2.5s infinite;
}

@keyframes ctaShimmer {
    100% { left: 100%; }
}

.popup-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 40px rgba(255, 107, 0, 0.6),
        0 0 0 4px rgba(255, 107, 0, 0.2);
}

.popup-cta .tg-icon {
    width: 22px;
    height: 22px;
}

/* ========================================
   POPUP SERIE A STYLE
   ======================================== */

/* Badge Utenti Telegram */
.popup-users-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(0, 136, 204, 0.08));
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 16px;
    color: #00ACED;
    font-size: 14px;
    font-weight: 500;
}

.popup-users-badge .tg-icon {
    width: 18px;
    height: 18px;
}

.popup-users-badge strong {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 16px;
    color: #fff;
}

/* Countdown Centrale Orizzontale */
.popup-countdown-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
}

.countdown-item-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
}

.countdown-num {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 32px;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.countdown-item-mini small {
    font-family: 'Designer', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.countdown-sep {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 28px;
    color: var(--primary);
    animation: countdownBlink 1s infinite;
}

@keyframes countdownBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Box Serie A - Colori Blu */
.popup-seria-box {
    background: linear-gradient(145deg, #1a2a4a 0%, #0d1a30 100%);
    border: 2px solid #2a5a9a;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.popup-seria-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4aa, #2a5a9a, #00d4aa);
}

.popup-seria-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08), transparent);
    pointer-events: none;
}

.seria-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.seria-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 6px;
}

.seria-title {
    display: flex;
    flex-direction: column;
}

.seria-label {
    font-family: 'Designer', sans-serif;
    font-size: 11px;
    color: #00d4aa;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.seria-name {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 22px;
    color: #fff;
    letter-spacing: 2px;
}

.seria-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.seria-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    transition: all 0.3s;
}

.seria-match:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateX(4px);
}

.seria-match .match-team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.seria-match .match-team.away {
    justify-content: flex-end;
}

.seria-match .match-team img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.seria-match .match-team span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
}

.seria-match .match-vs {
    font-family: 'Designer', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 12px;
}

.seria-cta-mini {
    text-align: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.seria-cta-mini span {
    font-size: 13px;
    color: #00d4aa;
    font-weight: 600;
}

/* ========================================
   COUNTDOWN
   ======================================== */
.countdown-wrapper {
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.15), rgba(255, 215, 0, 0.08));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 24px;
    padding: 24px 40px;
    margin-bottom: 32px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    font-family: 'Designer', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.countdown-pulse {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: countdownPulse 1.5s infinite;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

@keyframes countdownPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.8);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 215, 0, 0);
        transform: scale(1.1);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
        transform: scale(1);
    }
}

.countdown-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 18, 0.95));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 16px 22px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 75px;
}

.countdown-value span {
    display: block;
    font-family: 'TheBoldFont', var(--font-display), sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.countdown-item small {
    display: block;
    font-family: 'Designer', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 8px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0.3; }
}

/* ========================================
   MOBILE HEADER CTA - Enhanced
   ======================================== */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 20, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.3);
    padding: 14px 16px;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-spots {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.spots-pulse-ring {
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid rgba(255, 59, 48, 0.3);
    border-radius: 50%;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    100% { 
        transform: scale(2);
        opacity: 0;
    }
}

.spots-pulse {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5252 100%);
    border-radius: 50%;
    animation: spotsPulseMobile 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
}

@keyframes spotsPulseMobile {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.mobile-spots-count {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #FF5252;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
}

.mobile-spots-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.mobile-header-cta .mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #FFB347 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 107, 0, 0.6); }
}

.mobile-header-cta .mobile-cta-btn .tg-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   BOTTOM FIXED BAR
   ======================================== */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.fixed-urgency {
    display: flex;
    align-items: center;
    gap: 10px;
}

.urgency-pulse {
    width: 12px;
    height: 12px;
    background: #FF5252;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.urgency-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #FF5252;
}

.urgency-text {
    color: var(--gray-600);
    font-size: 14px;
}

.fixed-btn {
    padding: 14px 32px;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   MOBILE FIXED CTA
   ======================================== */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-fixed-cta .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.mobile-fixed-cta .tg-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   MOBILE TAB BAR
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 1px solid var(--gray-200);
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.3s;
}

.tab-item svg {
    width: 20px;
    height: 20px;
}

.tab-item:hover,
.tab-item.active {
    color: var(--primary);
}

.tab-cta {
    color: var(--white);
}

.tab-cta-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

.tab-cta-btn svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    padding: 40px 0 100px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo span {
    font-family: var(--font-brunson);
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
}

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.age-badge {
    background: #FF5252;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.footer-warning p {
    color: var(--gray-400);
    font-size: 13px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: var(--gray-600);
}

.footer-copy {
    color: var(--gray-600);
    font-size: 12px;
}

/* ========================================
   FOOTER DISCLAIMER ADM
   ======================================== */
.footer-disclaimer {
    background: var(--gray-900);
    padding: 48px 0 120px 0;
    text-align: center;
}

.footer-disclaimer .footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-adm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.8;
}

.footer-18 .age-badge {
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-text {
    margin-bottom: 24px;
}

.footer-brand-text {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-brand-text strong {
    color: var(--primary);
}

.footer-warning {
    color: var(--gray-400);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-help {
    color: var(--gray-400);
    font-size: 13px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: inline-block;
}

.footer-help strong {
    color: var(--primary);
}

.footer-disclaimer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-disclaimer .footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-disclaimer .footer-links a:hover {
    color: var(--primary);
}

.footer-disclaimer .footer-links span {
    color: var(--gray-600);
}

.footer-disclaimer .footer-copy {
    color: var(--gray-600);
    font-size: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    /* Header adjustments for tablet */
    .nav-menu {
        gap: 4px;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-spots-badge .spots-text {
        display: none;
    }
    
    .nav-spots-badge {
        padding: 8px 12px;
    }
    
    .nav-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .nav-cta .arrow-right {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-phone {
        max-height: 400px;
    }
    
    .hero-champions-card {
        max-width: 100%;
    }
    
    .specialita-grid {
        grid-template-columns: 1fr;
    }
    
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .perche-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .perche-image {
        order: -1;
    }
    
    .perche-list {
        display: inline-block;
        text-align: left;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 0px;
    }
    
    .header {
        display: none;
    }
    
    .header-new {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-header-cta {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px 16px;
        background: rgba(10, 10, 15, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 107, 0, 0.2);
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-tab-bar {
        display: grid;
    }
    
    .hero {
        min-height: auto;
        padding-top: 90px;
    }
    
    .hero-container {
        padding: 40px 20px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0;
    }
    
    .stat-item {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .countdown-wrapper {
        display: block;
        width: 100%;
        padding: 16px 20px;
    }
    
    .countdown {
        justify-content: center;
        gap: 8px;
    }
    
    .countdown-value {
        padding: 12px 14px;
        min-width: auto;
    }
    
    .countdown-value span {
        font-size: 26px;
    }
    
    .countdown-item small {
        font-size: 9px;
        margin-top: 6px;
    }
    
    .countdown-sep {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .countdown-label {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .steps-horizontal {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .result-overlay {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-fixed {
        display: none;
    }
    
    .mobile-fixed-cta {
        display: none;
    }
    
    .footer {
        padding-bottom: 120px;
    }
    
    /* Popup responsive */
    .popup-matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popup-win-card .win-teams img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-phone {
        max-height: 300px;
    }
    
    .hero-champions-card {
        padding: 16px;
    }
    
    .champions-card-name {
        font-size: 15px;
    }
    
    .champions-match .match-team span {
        font-size: 11px;
    }
    
    .champions-match .match-team img {
        width: 22px;
        height: 22px;
    }
    
    .champions-match .match-center {
        padding: 0 8px;
    }
    
    .champions-match .match-time {
        font-size: 12px;
    }
}

/* ======================= */
/* LA SCALATA - SEZIONE ANIMATA */
/* ======================= */

.section-scalata {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #0F0F18 50%, var(--dark-bg) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-scalata::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 0, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 215, 0, 0.1), transparent);
    pointer-events: none;
}

.scalata-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.scalata-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.scalata-badge .rocket-icon {
    width: 20px;
    height: 20px;
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.scalata-title {
    font-family: 'TheBoldFont', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.highlight-gold {
    color: var(--gold);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.highlight-orange {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.5);
}

.scalata-subtitle {
    font-family: 'Designer', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.scalata-visualization {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.scalata-path-svg {
    width: 100%;
    height: auto;
    max-height: 300px;
    margin-bottom: 40px;
}

.scalata-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2s ease-out;
}

.scalata-path.animated {
    stroke-dashoffset: 0;
}

.step-point {
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-point.visible {
    opacity: 1;
    animation: pointPop 0.5s ease-out forwards;
}

@keyframes pointPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.step-point.final {
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.scalata-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.scalata-step {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    min-width: 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.scalata-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.scalata-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.scalata-step.final {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 0, 0.1));
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.step-amount {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 4px;
}

.scalata-step.final .step-amount {
    color: var(--gold);
    font-size: 1.8rem;
}

.step-label {
    font-family: 'Designer', sans-serif;
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scalata-step.final .step-label {
    color: var(--gold);
}

.scalata-step-arrow {
    color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.5s ease;
}

.scalata-step-arrow.visible {
    opacity: 1;
    transform: translateX(0);
}

.scalata-step-arrow svg {
    width: 24px;
    height: 24px;
}

.scalata-counter {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    max-width: 400px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
}

.scalata-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: counterRotate 10s linear infinite;
}

@keyframes counterRotate {
    100% { transform: rotate(360deg); }
}

.counter-label {
    font-family: 'Designer', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.counter-value {
    font-family: 'TheBoldFont', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.counter-prefix, .counter-suffix {
    font-size: 0.6em;
}

.counter-note {
    font-family: 'Designer', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.scalata-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-btn-scalata {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), #FF8533);
    color: #fff;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    padding: 20px 50px;
    border-radius: 60px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.4);
}

.cta-btn-scalata:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(255, 107, 0, 0.5);
}

.cta-btn-scalata::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerBtn 3s infinite;
}

@keyframes shimmerBtn {
    100% { left: 100%; }
}

.cta-btn-scalata .tg-icon {
    width: 24px;
    height: 24px;
}

/* SCALATA LAYOUT 2 COLONNE COMPATTO */
.scalata-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.scalata-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scalata-path-svg-compact {
    width: 100%;
    max-width: 350px;
    height: auto;
}

.scalata-counter-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 16px 30px;
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.15), rgba(255, 215, 0, 0.08));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
}

.counter-value-compact {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.counter-label-compact {
    font-family: 'Designer', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.scalata-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.scalata-badge-compact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.2), rgba(255, 215, 0, 0.1));
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    width: fit-content;
}

.scalata-badge-compact .rocket-icon {
    width: 16px;
    height: 16px;
}

.scalata-title-compact {
    font-family: 'TheBoldFont', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    letter-spacing: 1px;
    margin: 0;
}

.scalata-subtitle-compact {
    font-family: 'Designer', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.scalata-steps-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 8px 0;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.step-value {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 1.1rem;
    color: #fff;
}

.step-value.final {
    color: var(--gold);
    font-size: 1.3rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.step-arrow {
    color: var(--primary);
    font-size: 1rem;
}

.cta-btn-scalata-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border: none;
    border-radius: 12px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 25px rgba(255, 107, 0, 0.4);
    width: fit-content;
}

.cta-btn-scalata-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(255, 107, 0, 0.5);
}

.cta-btn-scalata-compact .tg-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .scalata-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .scalata-left {
        order: 2;
    }
    
    .scalata-right {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .scalata-path-svg-compact {
        max-width: 280px;
    }
    
    .counter-value-compact {
        font-size: 2rem;
    }
    
    .step-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-scalata {
        padding: 60px 0;
    }
    
    .scalata-steps {
        gap: 6px;
    }
    
    .scalata-step {
        padding: 12px 14px;
        min-width: 60px;
    }
    
    .step-amount {
        font-size: 1.1rem;
    }
    
    .scalata-step-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .cta-btn-scalata {
        font-size: 0.95rem;
        padding: 16px 36px;
    }
}

@media (max-width: 480px) {
    .scalata-steps {
        flex-direction: column;
        gap: 10px;
    }
    
    .scalata-step {
        width: 100%;
        max-width: 200px;
    }
    
    .scalata-step-arrow {
        transform: rotate(90deg);
    }
    
    .scalata-path-svg {
        display: none;
    }
}

/* ========================================
   RESPONSIVE - HERO NUOVA STRUTTURA
   ======================================== */
@media (max-width: 768px) {
    .hero-telegram-badge {
        padding: 10px 18px;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .hero-telegram-badge .tg-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-telegram-badge span {
        font-size: 13px;
    }
    
    .hero-telegram-badge strong {
        font-size: 16px;
    }
    
    .hero-countdown-horizontal {
        padding: 18px 20px;
        gap: 12px;
        margin-bottom: 28px;
    }
    
    .countdown-label-inline {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .countdown-block {
        padding: 10px 14px;
        min-width: 55px;
    }
    
    .countdown-block .countdown-num {
        font-size: 26px;
    }
    
    .countdown-block small {
        font-size: 9px;
    }
    
    .countdown-colon {
        font-size: 24px;
    }
    
    .hero-seria-card {
        max-width: 100%;
        padding: 20px;
    }
    
    .hero-seria-box .seria-match {
        padding: 12px;
    }
    
    .hero-seria-box .match-team img {
        width: 28px;
        height: 28px;
    }
    
    .hero-seria-box .match-team span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-countdown-horizontal {
        padding: 14px 16px;
    }
    
    .countdown-inline {
        gap: 4px;
    }
    
    .countdown-block {
        padding: 8px 10px;
        min-width: 48px;
    }
    
    .countdown-block .countdown-num {
        font-size: 22px;
    }
    
    .countdown-colon {
        font-size: 20px;
    }
}

/* ========================================
   RESPONSIVE - HERO CENTRATO
   ======================================== */
@media (max-width: 768px) {
    .hero-container-centered {
        padding: 60px 20px;
        gap: 24px;
    }
    
    .hero-telegram-badge-big {
        padding: 12px 24px;
        gap: 10px;
    }
    
    .hero-telegram-badge-big .tg-icon {
        width: 22px;
        height: 22px;
    }
    
    .hero-telegram-badge-big span {
        font-size: 14px;
    }
    
    .hero-telegram-badge-big strong {
        font-size: 18px;
    }
    
    .hero-title-centered {
        font-size: clamp(32px, 8vw, 50px);
    }
    
    .hero-subtitle-centered {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .hero-countdown-center {
        padding: 20px 24px;
    }
    
    .countdown-box {
        padding: 12px 18px;
        min-width: 70px;
    }
    
    .countdown-box .countdown-number {
        font-size: 32px;
    }
    
    .countdown-divider {
        font-size: 28px;
    }
    
    .hero-seria-box-centered {
        padding: 20px;
    }
    
    .seria-header-row .seria-logo {
        width: 40px;
        height: 40px;
    }
    
    .seria-header-row .seria-name {
        font-size: 22px;
    }
    
    .seria-matches-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .seria-match-item {
        padding: 14px 20px;
        width: 100%;
        justify-content: center;
    }
    
    .seria-match-item .match-team img {
        width: 28px;
        height: 28px;
    }
    
    .seria-match-item .match-team span {
        font-size: 14px;
    }
    
    .hero-cta-centered {
        padding: 16px 36px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-container-centered {
        padding: 50px 16px;
        gap: 20px;
    }
    
    .hero-telegram-badge-big {
        padding: 10px 20px;
    }
    
    .hero-telegram-badge-big span {
        font-size: 13px;
    }
    
    .hero-telegram-badge-big strong {
        font-size: 16px;
    }
    
    .countdown-row {
        gap: 8px;
    }
    
    .countdown-box {
        padding: 10px 14px;
        min-width: 60px;
    }
    
    .countdown-box .countdown-number {
        font-size: 26px;
    }
    
    .countdown-box small {
        font-size: 9px;
    }
    
    .countdown-divider {
        font-size: 22px;
    }
    
    .seria-match-item .match-team span {
        font-size: 13px;
    }
}

/* ========================================
   POPUP COMPATTO - STILE HERO
   ======================================== */

.popup-compact {
    background: linear-gradient(145deg, rgba(10, 10, 15, 0.98), rgba(5, 5, 10, 0.99));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 24px 20px;
    max-width: 340px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 107, 0, 0.1);
}

.popup-logo-compact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.popup-badge-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), rgba(0, 136, 204, 0.05));
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 30px;
    padding: 8px 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.popup-badge-compact:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.25), rgba(0, 136, 204, 0.15));
    transform: scale(1.02);
}

.popup-badge-compact .tg-icon {
    width: 18px;
    height: 18px;
    color: #00ACED;
}

.badge-text-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-text-compact span {
    font-size: 12px;
    color: #00ACED;
}

.badge-text-compact strong {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 14px;
    color: #fff;
}

.badge-text-compact small {
    font-size: 9px;
    color: rgba(0, 172, 237, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-countdown-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(145deg, rgba(255, 107, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
}

.countdown-item-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 40px;
}

.countdown-num-compact {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 22px;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.countdown-item-compact small {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep-compact {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 18px;
    color: var(--primary);
    animation: countdownBlink 1s infinite;
}

.popup-seria-compact {
    background: linear-gradient(145deg, #0a2a4a 0%, #051525 100%);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 16px;
    padding: 14px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.popup-seria-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #2a5a9a, #00d4aa);
}

.seria-header-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.seria-logo-compact {
    width: 36px;
    height: 36px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
}

.seria-title-compact {
    display: flex;
    flex-direction: column;
}

.seria-label-compact {
    font-family: 'Designer', sans-serif;
    font-size: 9px;
    color: #00d4aa;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.seria-name-compact {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 16px;
    color: #fff;
}

.seria-matches-compact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.seria-match-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 10px 12px;
}

.match-team-compact {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 70px;
}

.match-team-compact.home { justify-content: flex-end; }
.match-team-compact.away { justify-content: flex-start; }

.match-team-compact img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.match-team-compact span {
    font-family: 'TheBoldFont', sans-serif;
    font-size: 11px;
    color: #fff;
}

.match-tg-btn-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #00ACED, #0088cc);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}

.match-tg-btn-compact:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 172, 237, 0.5);
}

.match-tg-btn-compact .tg-icon {
    width: 16px;
    height: 16px;
    color: #fff;
}

.popup-cta-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    background: linear-gradient(135deg, var(--primary), #ff8c00);
    border-radius: 10px;
    font-family: 'TheBoldFont', sans-serif;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.popup-cta-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
}

.popup-cta-compact .tg-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   OTTIMIZZAZIONI MOBILE COMPLETE
   ======================================== */

@media (max-width: 375px) {
    .header-logo span { font-size: 16px; }
    .header-cta { padding: 6px 10px; font-size: 10px; }
    .hero-title-centered { font-size: 24px !important; }
    .hero-logo-centered { width: 80px; height: 80px; }
    .countdown-box-centered { width: 50px; }
    .countdown-box-centered span { font-size: 22px; }
    .section-title, .section-header h2 { font-size: 24px !important; }
    .metodo-number-new { font-size: 48px; }
    .scalata-title { font-size: 22px; }
    .chi-sono-photo img { width: 150px; height: 150px; }
    .cta-title { font-size: 26px; }
}

@media (max-width: 480px) {
    .hero-title-centered { font-size: 28px !important; }
    .hero-subtitle-centered { font-size: 14px; padding: 0 10px; }
    .metodo-item-new { flex-direction: column; text-align: center; padding: 30px 16px; }
    .metodo-item-new.reverse { flex-direction: column; }
    .metodo-number-new { position: relative; top: 0; left: 0; right: 0; text-align: center; font-size: 54px; }
    .metodo-content-new { text-align: center; }
    .scalata-wrapper { flex-direction: column; }
    .scalata-graph, .scalata-content { width: 100%; }
    .steps-horizontal { flex-direction: column; gap: 25px; }
    .step-h-connector { display: none; }
    .chi-sono-wrapper { flex-direction: column; text-align: center; }
    .chi-sono-photo, .chi-sono-text { width: 100%; }
    .recensioni-grid-new { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .section { padding: 50px 0; }
    .hero-centered { padding: 100px 16px 50px; min-height: auto; }
    .hero-container-centered { gap: 20px; }
    .match-row-compact { min-width: 250px; padding: 10px; }
    .community-wrapper { flex-direction: column; gap: 30px; }
    .community-phone img { max-width: 280px; }
    .cta-section { padding: 50px 20px; }
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
}

@media (hover: none) and (pointer: coarse) {
    .header-cta, .match-tg-btn-compact, .popup-cta-compact, .cta-button { min-height: 44px; }
    .header-cta:active, .match-tg-btn-compact:active, .cta-button:active { transform: scale(0.98); }
}

@supports (padding-top: env(safe-area-inset-top)) {
    .header-new { padding-top: calc(12px + env(safe-area-inset-top)); }
    .mobile-header-cta { padding-bottom: calc(10px + env(safe-area-inset-bottom)); }
}
