/* ========================================
   ROSELLINO LANDING - BIANCO E ROSSO
   Clean / Modern / Light Theme
   ======================================== */

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

:root {
    /* Colors - Rosso e Bianco */
    --primary: #DC0714;
    --primary-dark: #B00610;
    --primary-light: #FF1E2D;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --black: #1A1A1A;
    --gray-900: #2D2D2D;
    --gray-800: #3D3D3D;
    --gray-700: #4D4D4D;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #AAAAAA;
    --gray-300: #CCCCCC;
    --gray-200: #E5E5E5;
    --gray-100: #F3F4F6;
    
    /* Light theme additions */
    --bg-light: #FFFFFF;
    --bg-light-alt: #F9FAFB;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-light: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    --gradient-hero: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 50%, #E8E8E8 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 8px 30px rgba(220, 7, 20, 0.3);
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

.popup-content.champions-style {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 20px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(220, 7, 20, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: popupSlideIn 0.4s ease-out;
}

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

/* Popup Header */
.popup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popup-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.popup-countdown-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-countdown-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.popup-title-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.popup-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--white);
    letter-spacing: 1px;
}

.popup-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.popup-close svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.popup-close:hover {
    background: var(--primary);
}

/* Popup Mode Visibility */
.popup-mode {
    display: none;
}

.main-popup[data-mode="champions"] .popup-champions {
    display: block;
}

.main-popup[data-mode="countdown"] .popup-countdown {
    display: block;
}

/* Popup Date Group (Champions) */
.popup-date-group {
    margin-bottom: 10px;
}

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

.popup-date-group .date-label {
    background: var(--primary);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.popup-date-group .date-value {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
}

/* Popup Match */
.popup-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: 8px;
    padding: 12px 14px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.popup-match:hover {
    background: rgba(220, 7, 20, 0.15);
    border-color: var(--primary);
    transform: translateX(5px);
}

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

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

.popup-match .team-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

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

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

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

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

/* Popup CTA */
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 7, 20, 0.4);
}

.popup-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 7, 20, 0.5);
}

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

/* Popup Urgency Bar (Countdown + Posti) */
.popup-urgency-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(220, 7, 20, 0.15);
    border: 1px solid rgba(220, 7, 20, 0.3);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
}

.popup-countdown-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 12px;
}

.popup-countdown-mini svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.popup-countdown-mini strong {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 15px;
}

.popup-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white);
}

.popup-spots-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

.popup-spots strong {
    color: #00FF88;
    font-family: var(--font-display);
    font-size: 16px;
}

/* Popup Info Text */
.popup-info-text {
    text-align: center;
    font-size: 12px;
    color: var(--gray-300);
    margin: 8px 0 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

@media (max-width: 480px) {
    .popup-urgency-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .popup-countdown-mini,
    .popup-spots {
        justify-content: center;
    }
}

/* Popup Countdown Content */
.popup-countdown-content {
    text-align: center;
    padding: 20px 0;
}

.popup-countdown-text {
    font-size: 15px;
    color: var(--gray-300);
    margin-bottom: 25px;
}

.popup-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.popup-countdown-item {
    background: rgba(220, 7, 20, 0.15);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
}

.popup-countdown-item span {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--primary);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(220, 7, 20, 0.5);
}

.popup-countdown-item small {
    font-size: 10px;
    color: var(--gray-400);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.popup-countdown-sep {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

.popup-countdown-subtitle {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 600;
}

/* Popup Mobile Responsive */
@media (max-width: 480px) {
    .popup-content.champions-style {
        padding: 20px;
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .popup-logo {
        width: 40px;
        height: 40px;
    }
    
    .popup-title {
        font-size: 18px;
    }
    
    .popup-match {
        padding: 10px 10px;
    }
    
    .popup-match .team-logo {
        width: 22px;
        height: 22px;
    }
    
    .popup-match .team-name {
        font-size: 11px;
    }
    
    .popup-match .match-center {
        padding: 0 8px;
    }
    
    .popup-match .match-time {
        font-size: 12px;
    }
    
    .popup-countdown-item {
        padding: 12px 15px;
        min-width: 65px;
    }
    
    .popup-countdown-item span {
        font-size: 32px;
    }
    
    .popup-countdown-sep {
        font-size: 28px;
    }
    
    .popup-cta {
        padding: 14px 20px;
        font-size: 12px;
    }
}

/* ========================================
   COOKIE POPUP - Compatto
   ======================================== */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    padding: 0;
}

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

.cookie-content {
    background: var(--white);
    max-width: 100%;
    width: 100%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.cookie-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.cookie-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-icon svg {
    width: 100%;
    height: 100%;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h3 {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--black);
}

.cookie-text p {
    font-size: 12px;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

@media (max-width: 600px) {
    .cookie-content {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-icon {
        width: 32px;
        height: 32px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-text h3 {
        font-size: 16px;
    }
    
    .cookie-text p {
        font-size: 11px;
    }
    
    .cookie-accept {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--white);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

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

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

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--black);
    letter-spacing: 2px;
}

.nav-logo em {
    color: var(--primary);
    font-style: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

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

.nav-cta {
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-radius: 4px;
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

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

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s;
}

/* ========================================
   MOBILE HEADER CTA
   ======================================== */
/* ========================================
   MOBILE HEADER CTA
   ======================================== */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--black);
    padding: 12px 20px;
    z-index: 999;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-800);
}

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

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

.spots-icon-svg svg {
    width: 100%;
    height: 100%;
}

.mobile-spots-text {
    display: flex;
    flex-direction: column;
}

.mobile-spots-label {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-spots-count {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
}

.mobile-cta-btn {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Hero Background - LaLiga Clean Square Style */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle Grid Pattern */
.hero-bg-shapes::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(220, 7, 20, 0.03) 100%);
}

/* Square Shape 1 - Top Right */
.shape {
    position: absolute;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 5%;
    right: 5%;
    border: 2px solid rgba(220, 7, 20, 0.15);
    background: transparent;
}

.shape-1::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    border: 2px solid rgba(220, 7, 20, 0.08);
}

/* Shape 2 - Accent Bars */
.shape-2 {
    width: 6px;
    height: 200px;
    bottom: 25%;
    left: 8%;
    background: var(--primary);
    opacity: 0.3;
}

.shape-2::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 120px;
    background: var(--primary);
    left: 20px;
    top: 40px;
    opacity: 0.7;
}

.shape-2::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 80px;
    background: var(--primary);
    left: 40px;
    top: 80px;
    opacity: 0.5;
}

/* Shape 3 - Small Square */
.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 40%;
    left: 20%;
    background: var(--primary);
    opacity: 0.12;
}

.shape-3::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary);
    top: -50px;
    right: -40px;
    opacity: 0.6;
}

@keyframes pulse-dot {
    0%, 100% { 
        opacity: 0.6;
    }
    50% { 
        opacity: 0.3;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero con Champions Box integrato */
.hero-container.hero-with-champions {
    grid-template-columns: 1fr 440px;
    gap: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 7, 20, 0.15);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-live 1.5s infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 90px);
    color: var(--black);
    line-height: 0.95;
    margin-bottom: 25px;
    letter-spacing: 3px;
}

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

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

/* Countdown */
.countdown-wrapper {
    background: var(--white);
    border: 2px solid var(--gray-200);
    padding: 20px 30px;
    margin-bottom: 30px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.countdown-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.countdown-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

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

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

.countdown-item span {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--primary);
    display: block;
    line-height: 1;
    text-shadow: 0 0 30px rgba(220, 7, 20, 0.5);
}

.countdown-item small {
    font-size: 10px;
    color: var(--gray-500);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--primary);
    animation: blink 1s step-end infinite;
}

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

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.social-proof-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.social-proof-icon svg {
    width: 100%;
    height: 100%;
}

.social-proof span {
    font-size: 14px;
    color: var(--gray-600);
}

.social-proof strong {
    color: var(--black);
}

/* CTA Button - LaLiga Clean Square Style */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 18px 40px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

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

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-image {
    width: 100%;
    display: block;
    border-radius: 12px;
    border: 3px solid var(--primary);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 7, 20, 0.2) 0%, transparent 50%);
    border-radius: 12px;
}

.floating-stat {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.stat-1 {
    top: 10%;
    left: -20px;
}

.stat-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary);
}

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

.stat-icon {
    font-size: 28px;
}

.stat-icon-svg {
    width: 28px;
    height: 28px;
    color: #FFD700;
}

.stat-icon-svg svg {
    width: 100%;
    height: 100%;
}

.stat-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-angle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-dark .section-tag {
    background: var(--white);
    color: var(--primary);
}

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

.section-dark .section h2 span,
.section-dark h2 span {
    color: var(--black);
}

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

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

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.section h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: 2px;
    line-height: 1;
}

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

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Section Compact - Chi Siamo */
.section-compact {
    padding: 60px 0;
}

.chi-siamo-compact {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.chi-siamo-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 4px solid var(--primary);
    box-shadow: 0 10px 40px rgba(220, 7, 20, 0.3);
}

.chi-siamo-text {
    flex: 1;
}

.chi-siamo-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.chi-siamo-text h2 span {
    color: var(--primary);
}

.chi-siamo-text p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 30px;
}

.chi-siamo-text .section-tag {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .chi-siamo-compact {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .chi-siamo-logo {
        width: 140px;
        height: 140px;
    }
}

.section-content h2 {
    margin-bottom: 30px;
}

.section-content p {
    margin-bottom: 20px;
    color: var(--gray-600);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
    font-weight: 500;
}

.feature-check {
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 4px;
}

.section-image {
    position: relative;
}

.image-frame {
    position: relative;
}

.image-frame img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.frame-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary);
    border-radius: 12px;
    z-index: -1;
}

/* ========================================
   STEPS
   ======================================== */
.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.5;
}

.step-content {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    border-radius: 8px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--white);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--white);
}

.step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.step-connector {
    width: 80px;
    color: var(--primary);
    margin-top: 100px;
    opacity: 0.3;
}

/* ========================================
   CARDS GRID
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ========================================
   METHODS SECTION
   ======================================== */
.methods-showcase {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.methods-image {
    position: sticky;
    top: 120px;
}

.methods-image img {
    width: 100%;
    border-radius: 12px;
    border: 3px solid var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

/* Nuova griglia 3 colonne */
.methods-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .methods-grid-3col {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.method-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

/* Immagine metodi sotto le card */
.methods-image-bottom {
    margin-top: 40px;
    text-align: center;
}

.methods-image-bottom img {
    max-width: 100%;
    width: 500px;
    border-radius: 10px;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(220, 7, 20, 0.25);
}

@media (max-width: 768px) {
    .methods-image-bottom {
        margin-top: 30px;
    }
    
    .methods-image-bottom img {
        width: 280px;
    }
}

/* ========================================
   VIP GIVEAWAY SECTION
   ======================================== */
.vip-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    padding: 60px 0;
}

.vip-giveaway-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: linear-gradient(145deg, rgba(220, 7, 20, 0.1) 0%, rgba(220, 7, 20, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.vip-content {
    flex: 1;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 6px;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.vip-badge svg {
    width: 16px;
    height: 16px;
}

.vip-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 15px;
}

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

.vip-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 25px;
}

.vip-cta {
    display: inline-flex;
}

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

.vip-image img {
    width: 280px;
    height: auto;
    border-radius: 12px;
    border: 2px solid var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .vip-giveaway-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .vip-image img {
        width: 220px;
    }
    
    .vip-cta {
        width: 100%;
        justify-content: center;
    }
}

.method-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 35px 30px;
    position: relative;
    transition: all 0.3s;
    border-radius: 8px;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
}

.method-card.method-featured {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
}

.method-card.method-featured::before {
    content: 'TOP';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    letter-spacing: 1px;
    border-radius: 4px;
}

.method-header {
    margin-bottom: 20px;
}

.method-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.method-header h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.2;
}

.method-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
}

.method-details {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.method-details p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.method-footer {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    border-radius: 8px;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 60px;
    background: var(--primary);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.advantage-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--black);
}

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

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 35px;
    border-radius: 8px;
    transition: all 0.3s;
    position: relative;
    border-left: 4px solid var(--white);
}

.review-card:hover {
    border-color: var(--white);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.review-stars {
    color: #FFD700;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
}

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

.author-info strong {
    font-size: 15px;
    color: var(--white);
}

.author-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

.reviews-cta .cta-btn {
    background: var(--white);
    color: var(--primary);
}

.reviews-cta .cta-btn:hover {
    background: var(--black);
    color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--black);
}

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

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

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

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

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: var(--primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    right: -30px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 64px);
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 25px;
}

.cta-section h2 span {
    color: var(--black);
}

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-btn-white {
    background: var(--white);
    color: var(--primary);
}

.cta-btn-white:hover {
    background: var(--black);
    color: var(--white);
}

/* ========================================
   BOTTOM FIXED BAR
   ======================================== */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 15px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    border-top: 3px solid var(--primary);
}

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

.urgency-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    padding: 8px 15px;
    border-radius: 4px;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-live 1s infinite;
}

.urgency-number {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
}

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

.urgency-text strong {
    color: var(--white);
}

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

/* ========================================
   MOBILE TAB BAR
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 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-800);
    grid-template-columns: repeat(5, 1fr);
}

.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(220, 7, 20, 0.5);
}

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

/* ========================================
   FOOTER DISCLAIMER ADM
   ======================================== */
.footer-disclaimer {
    background: var(--black);
    padding: 50px 0 120px;
    border-top: 1px solid var(--gray-800);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.footer-adm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.adm-logo {
    height: 60px;
    width: auto;
    opacity: 0.8;
}

.footer-18 {
    display: flex;
    align-items: center;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    border: 3px solid var(--white);
}

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

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

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

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

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

.footer-help {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 0;
}

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

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

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

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

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

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .methods-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methods-image {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 400px;
    }
    
    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 0px;
    }
    
    .header {
        display: none;
    }
    
    .nav-menu,
    .nav-right {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-header-cta {
        display: flex;
        top: 0;
        position: fixed;
    }
    
    .bottom-fixed {
        display: none;
    }
    
    .mobile-tab-bar {
        display: grid;
    }
    
    .hero {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Hero con Champions - Responsive */
    .hero-container.hero-with-champions {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    
    /* Champions Box PRIMA su mobile */
    .hero-container.hero-with-champions .champions-box {
        order: -1;
        margin-bottom: 20px;
    }
    
    .hero-container.hero-with-champions .hero-content {
        order: 1;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-badge {
        margin: 0 auto 25px;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px;
    }
    
    .countdown-wrapper {
        margin: 0 auto 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    
    .countdown-label {
        justify-content: center;
        text-align: center;
    }
    
    .countdown {
        justify-content: center;
    }
    
    .social-proof {
        justify-content: center;
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-image {
        order: -1;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-disclaimer {
        padding-bottom: 140px;
    }
    
    .footer-adm {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .countdown-item span {
        font-size: 36px;
    }
    
    .countdown-sep {
        font-size: 30px;
    }
    
    .cta-btn {
        padding: 16px 30px;
        font-size: 13px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 32px;
    }
}

/* ========================================
   CHAMPIONS LEAGUE BOX - STILE UEFA
   Colori: Navy/Blu scuro con accenti cyan/magenta
   ======================================== */

/* Hero con Champions integrato */
.hero-with-champions {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: center;
}

/* Champions Box principale */
.champions-box {
    background: linear-gradient(145deg, #0c1528 0%, #1a1f3a 50%, #0f1629 100%);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(100, 180, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Effetto glow sfumato come nell'immagine */
.champions-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(0, 200, 255, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(200, 50, 200, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Linea superiore colorata */
.champions-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0066cc, #9933ff, #ff0066);
    opacity: 0.8;
}

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

.champions-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

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

.champions-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.champions-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
}

/* Gruppi di date */
.champions-date-group {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.champions-date-group:last-of-type {
    margin-bottom: 20px;
}

.champions-date-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.date-label {
    font-family: var(--font-display);
    font-size: 12px;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
}

.date-value {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Match singolo */
.champions-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.champions-match:last-child {
    margin-bottom: 0;
}

.champions-match:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(4px);
}

/* Team nel match */
.match-team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

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

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

.team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    padding: 3px;
}

/* Logo Juventus bianco - sfondo scuro */
.team-logo.juve-logo {
    background: #000;
    padding: 4px;
}

.team-name {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Centro match */
.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    flex-shrink: 0;
}

.match-time {
    font-family: var(--font-display);
    font-size: 14px;
    color: #00d4ff;
    letter-spacing: 1px;
}

.match-vs {
    font-family: var(--font-body);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Champions */
.champions-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 50%, #00ccff 100%);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.3);
}

.champions-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #00ccff 0%, #0099ff 50%, #0066cc 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.champions-cta:hover::before {
    opacity: 1;
}

.champions-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 150, 255, 0.5);
}

.champions-cta .tg-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    position: relative;
    z-index: 1;
}

.champions-cta span {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

/* Responsive Champions */
@media (max-width: 1100px) {
    .hero-with-champions {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .champions-box {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .champions-box {
        padding: 18px;
        margin: 0 -10px;
        border-radius: 12px;
        width: calc(100% + 20px);
    }
    
    .champions-header {
        gap: 10px;
        margin-bottom: 16px;
    }
    
    .champions-logo {
        width: 40px;
        height: 40px;
    }
    
    .champions-title {
        font-size: 18px;
    }
    
    .champions-match {
        padding: 10px 12px;
    }
    
    .team-logo {
        width: 26px;
        height: 26px;
    }
    
    .team-name {
        font-size: 12px;
    }
    
    .match-time {
        font-size: 12px;
    }
    
    .champions-cta {
        padding: 14px 20px;
    }
    
    .champions-cta span {
        font-size: 14px;
    }
    
    /* Hero content più compatto dopo Champions */
    .hero-content {
        padding-top: 10px;
    }
    
    .hero-content h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 14px;
        margin-bottom: 15px;
    }
}
