/* ========================================
   GLADIA LANDING - STILE ROMA ANTICA
   Elegante / Imperiale / Gladiatorio
   ======================================== */

/* Custom Fonts */
@font-face {
    font-family: 'BuiltTitling';
    src: url('built_titling 2/built titling sb.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BuiltTitling';
    src: url('built_titling 2/built titling bd.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

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

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

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

:root {
    /* Colors - Amaranto, Bianco e Giallo Scuro */
    --amaranto: #9B1B30;
    --amaranto-light: #B8253D;
    --amaranto-dark: #7A1526;
    --amaranto-gradient: linear-gradient(135deg, #9B1B30 0%, #B8253D 50%, #7A1526 100%);
    
    --gold: #C9A227;
    --gold-light: #DAB82E;
    --gold-dark: #A6851F;
    --gold-gradient: linear-gradient(135deg, #C9A227 0%, #DAB82E 50%, #A6851F 100%);
    
    --yellow: #C9A227;
    --yellow-light: #DAB82E;
    --yellow-dark: #8B7119;
    
    --marble: #FFFFFF;
    --marble-dark: #F8F6F3;
    
    --blood-red: #9B1B30;
    --imperial-purple: #4B0082;
    
    /* Dark Theme - INVERTITO: Sfondo Bianco */
    --dark-bg: #FFFFFF;
    --dark-card: #FFFFFF;
    --dark-border: #E8E0E2;
    --stone: #F5F0F1;
    --stone-light: #FAF8F8;
    
    --white: #1A1A1A;
    --off-white: #2A2A2A;
    --black: #FFFFFF;
    --gray-900: #F5F5F5;
    --gray-800: #E8E8E8;
    --gray-700: #D0D0D0;
    --gray-600: #888888;
    --gray-500: #666666;
    --gray-400: #555555;
    --gray-300: #444444;
    --gray-200: #333333;
    --gray-100: #222222;
    
    /* Colori per testo - NUOVI */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --text-amaranto: #9B1B30;
    --text-gold: #8B7119;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(155, 27, 48, 0.15);
    --shadow-amaranto: 0 0 40px rgba(155, 27, 48, 0.2);
    --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.2);
    
    /* Typography */
    --font-display: 'BuiltTitling', 'Cinzel', serif;
    --font-hero: 'WarHeroes', 'Cinzel', serif;
    --font-accent: 'Ethnocentric', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

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

/* ========================================
   DECORAZIONI SVG ROMANE
   ======================================== */
.laurel-left, .laurel-right,
.hero-laurel-left, .hero-laurel-right,
.popup-laurel-left, .popup-laurel-right,
.cta-laurel-left, .cta-laurel-right {
    color: var(--amaranto);
    opacity: 0.9;
}

.warning-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    fill: var(--gold);
}

.sword-icon, .helmet-icon, .trophy-icon, .shield-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
    fill: var(--amaranto);
}

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

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

.legal-popup-content {
    background: #FFFFFF;
    border: 3px solid var(--amaranto);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.legal-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--amaranto-gradient);
}

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

.legal-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--amaranto);
    box-shadow: var(--shadow-amaranto);
    object-fit: cover;
}

.legal-logo .laurel-left,
.legal-logo .laurel-right {
    width: 40px;
    height: 80px;
    color: var(--amaranto);
}

.legal-age-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--amaranto-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-amaranto);
}

.legal-age-circle span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
}

.legal-popup-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--amaranto);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.legal-popup-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 15px;
}

.legal-terms {
    font-size: 13px !important;
    color: #666666 !important;
}

.legal-terms a {
    color: var(--amaranto);
    text-decoration: none;
}

.legal-accept-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--amaranto-gradient);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 27, 48, 0.4);
}

.legal-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
}

.legal-accept-btn .sword-icon {
    width: 20px;
    height: 20px;
    fill: var(--dark-bg);
}

.legal-warning {
    font-size: 12px !important;
    color: var(--gray-500) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ========================================
   HEADER - Stile Romano con Colonne
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, #C9A227 0%, #B8941F 50%, #A67F1A 100%);
    backdrop-filter: blur(20px);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

/* Colonne Header */
.header-column {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.header-column-left {
    flex: 1;
    justify-content: flex-start;
}

/* Divisorio Romano con immagine */
.roman-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.header-column-center {
    flex: 2;
    justify-content: center;
}

.header-column-right {
    flex: 1;
    justify-content: flex-end;
}

/* Bordo Romano Inferiore */
.header-roman-border {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--amaranto) 20%, var(--amaranto) 80%, transparent 100%);
    opacity: 0.6;
}

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

.header-logo img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.header-logo span {
    font-family: var(--font-hero);
    font-size: 28px;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Header Center rimosso - ora usa header-column-center */

.header-nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.header-nav-links li {
    display: flex;
    align-items: center;
}

.header-nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.header-nav-links a:hover {
    color: var(--amaranto);
}

/* Header Right rimosso - ora usa header-column-right */

.header-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 13px;
    color: #FFFFFF;
    font-weight: 600;
}

.header-spot-dot {
    width: 8px;
    height: 8px;
    background: #FFFFFF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amaranto);
    padding: 10px 20px;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: #7a1526;
}

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

/* Mobile Header CTA */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-bottom: 1px solid rgba(155, 27, 48, 0.2);
    justify-content: space-between;
    align-items: center;
}

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

.spots-pulse-ring {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid var(--amaranto);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
    left: -4px;
}

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

.spots-pulse {
    width: 24px;
    height: 24px;
    background: var(--amaranto);
    border-radius: 50%;
}

.mobile-spots-count {
    font-weight: 700;
    font-size: 18px;
    color: var(--amaranto);
}

.mobile-spots-label {
    font-size: 12px;
    color: #666666;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--amaranto-gradient);
    padding: 12px 20px;
    border-radius: 25px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.mobile-cta-btn .tg-icon {
    width: 18px;
    height: 18px;
    fill: #FFFFFF;
}

/* ========================================
   DECORAZIONI CON IMMAGINI PNG
   ======================================== */
.roman-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.roman-decor {
    position: absolute;
    opacity: 0.08;
    object-fit: contain;
}

/* Decorazioni Hero */
.decor-gladiatore-left {
    width: 150px;
    height: auto;
    top: 15%;
    left: 3%;
    filter: brightness(0) invert(1);
}

.decor-colonna-right {
    width: 80px;
    height: auto;
    top: 10%;
    right: 3%;
    filter: brightness(0) invert(1);
}

.decor-vaso-bottom {
    width: 100px;
    height: auto;
    bottom: 8%;
    left: 8%;
    filter: brightness(0) invert(1);
}

.decor-colosseo-center {
    width: 200px;
    height: auto;
    bottom: 5%;
    right: 10%;
    filter: brightness(0) invert(1);
}

/* Decorazioni Sezioni */
.section-decor {
    position: absolute;
    z-index: 0;
    object-fit: contain;
}

/* Sezione Chi Sono - Sfondo Bianco - immagini trasparenti/tono amaranto */
.section-chi .section-decor {
    opacity: 0.06;
}

.decor-colonna-left {
    width: 100px;
    height: auto;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
}

.decor-vaso-right {
    width: 80px;
    height: auto;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

/* Sezione Metodo - Sfondo Amaranto - immagini bianche */
.section-metodo .section-decor {
    opacity: 0.08;
    filter: brightness(0) invert(1);
}

.decor-colosseo-left {
    width: 180px;
    height: auto;
    left: 2%;
    top: 25%;
}

.decor-gladiatore-right {
    width: 120px;
    height: auto;
    right: 3%;
    bottom: 15%;
}

/* Sezione Risultati - Sfondo Bianco */
.section-risultati .section-decor {
    opacity: 0.06;
}

.decor-colonna2-left {
    width: 90px;
    height: auto;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
}

/* Elemento visibile con colore originale */
.visible-color {
    opacity: 0.25 !important;
    filter: none !important;
}

/* Sezione Recensioni - Sfondo Amaranto - immagini bianche */
.section-recensioni .section-decor {
    opacity: 0.08;
    filter: brightness(0) invert(1);
}

.decor-gladiatore-left {
    width: 130px;
    height: auto;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
}

.decor-colonna-right {
    width: 90px;
    height: auto;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
}

/* Sezione FAQ - Sfondo Bianco */
.section-faq .section-decor {
    opacity: 0.06;
}

.decor-colonna2-right {
    width: 80px;
    height: auto;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
}

/* CTA Section Decorazioni */
.cta-decor {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.cta-gladiatore-left {
    width: 150px;
    height: auto;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.cta-colonna-center-left {
    width: 60px;
    height: auto;
    left: 20%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.06;
}

.cta-colonna-center-right {
    width: 60px;
    height: auto;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.06;
}

.cta-gladiatore-right {
    width: 150px;
    height: auto;
    right: 3%;
    top: 50%;
    transform: translateY(-50%) scaleX(-1);
}

/* Header decorazioni */
.header-decor-img {
    height: 45px;
    width: auto;
    opacity: 0.5;
    object-fit: contain;
}

.header-decor-right {
    opacity: 0.5;
}

.divider-img {
    height: 40px;
    width: auto;
    opacity: 0.4;
    object-fit: contain;
}

/* Responsive Decorazioni */
@media (max-width: 1024px) {
    .roman-decor,
    .section-decor,
    .cta-decor {
        opacity: 0.04;
    }
    
    .decor-gladiatore-left,
    .decor-colonna-right,
    .decor-vaso-bottom,
    .decor-colosseo-center {
        transform: scale(0.7);
    }
    
    .header-decor-img,
    .divider-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .roman-decor,
    .section-decor,
    .cta-decor {
        display: none;
    }
}

/* ========================================
   HERO SECTION - SFONDO AMARANTO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, var(--amaranto) 0%, var(--amaranto-dark) 50%, var(--amaranto) 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
    opacity: 0.15;
}

.colosseum-bg {
    width: 100%;
    height: 100%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-laurel-left, .hero-laurel-right {
    width: 50px;
    height: 100px;
    color: var(--gold);
}

.hero-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
    object-fit: cover;
}

.hero-telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.hero-telegram-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #FFFFFF;
    transform: translateY(-2px);
}

.hero-telegram-badge .tg-icon {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.hero-telegram-badge .badge-text {
    text-align: left;
}

.hero-telegram-badge .badge-text span {
    display: block;
    color: #FFFFFF;
    font-size: 15px;
}

.hero-telegram-badge .badge-text small {
    color: var(--gold);
    font-size: 12px;
}

.hero-title {
    margin-bottom: 20px;
}

.hero-title .title-main {
    display: block;
    font-family: var(--font-hero);
    font-size: clamp(60px, 12vw, 100px);
    color: var(--gold);
    letter-spacing: 15px;
    text-shadow: 0 0 40px rgba(201, 162, 39, 0.4);
    line-height: 1;
    margin-bottom: 15px;
}

.hero-title .title-sub {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 26px);
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero Countdown */
.hero-countdown {
    margin-bottom: 40px;
}

.countdown-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.countdown-pulse {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.countdown-box small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-divider {
    font-family: var(--font-display);
    font-size: 28px;
    color: #FFFFFF;
    opacity: 0.5;
}

/* ========================================
   NUOVO HERO - COUNTDOWN ROMANO + DUE COLONNE
   ======================================== */

.hero-container-new {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* COUNTDOWN ROMANO CENTRALE */
.hero-countdown-roman {
    text-align: center;
    margin-bottom: 50px;
}

.countdown-label-roman {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.countdown-box-roman {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 20px 30px;
    min-width: 100px;
    text-align: center;
    position: relative;
}

.countdown-box-roman::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gold);
}

.countdown-number-roman {
    display: block;
    font-family: 'RomanFont7', var(--font-display);
    font-size: 48px;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.4);
    letter-spacing: 2px;
}

.countdown-number-arabic {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    letter-spacing: 1px;
}

.countdown-box-roman small {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

.countdown-divider-roman {
    font-size: 40px;
    color: var(--gold);
    opacity: 0.6;
}

/* DUE COLONNE HERO */
.hero-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* COLONNA SINISTRA - FOTO GLADIA */
.hero-col-left {
    display: flex;
    justify-content: center;
}

.gladia-photo-container {
    text-align: center;
}

.gladia-frame {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.gladia-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    opacity: 0.5;
}

.gladia-frame::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.gladia-photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 0 50px rgba(201, 162, 39, 0.4);
}

.gladia-info {
    text-align: center;
}

.gladia-name {
    font-family: var(--font-hero);
    font-size: 42px;
    color: var(--gold);
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
}

.gladia-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 25px;
}

.gladia-telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gladia-telegram-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gladia-telegram-badge .tg-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
}

.gladia-telegram-badge .badge-text {
    text-align: left;
}

.gladia-telegram-badge .badge-text span {
    display: block;
    color: #FFFFFF;
    font-size: 16px;
}

.gladia-telegram-badge .badge-text small {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
}

/* COLONNA DESTRA - ARENA BOX */
.hero-col-right {
    display: flex;
    justify-content: center;
}

.arena-box {
    background: linear-gradient(180deg, 
        rgba(30, 20, 15, 0.95) 0%, 
        rgba(45, 35, 25, 0.9) 50%,
        rgba(30, 20, 15, 0.95) 100%);
    border: 3px solid var(--gold);
    border-radius: 12px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.5),
        inset 0 0 60px rgba(201, 162, 39, 0.1);
}

.arena-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        repeating-linear-gradient(90deg,
            transparent,
            transparent 10px,
            rgba(139, 115, 85, 0.03) 10px,
            rgba(139, 115, 85, 0.03) 20px);
    pointer-events: none;
}

/* ARENA HEADER */
.arena-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(180deg, 
        rgba(201, 162, 39, 0.2) 0%, 
        rgba(201, 162, 39, 0.05) 100%);
    border-bottom: 2px solid var(--gold);
}

.arena-pillars {
    display: flex;
    gap: 5px;
}

.arena-pillars .pillar {
    display: block;
    width: 8px;
    height: 35px;
    background: linear-gradient(180deg, 
        var(--gold) 0%, 
        #8B7355 50%, 
        var(--gold) 100%);
    border-radius: 2px;
}

.arena-title-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.laurel-mini {
    width: 20px;
    height: 40px;
    color: var(--gold);
    opacity: 0.8;
}

.laurel-mini.laurel-right {
    transform: scaleX(-1);
}

.arena-title {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.arena-label {
    font-family: var(--font-display);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
}

.arena-name {
    font-family: var(--font-hero);
    font-size: 26px;
    color: var(--gold);
    letter-spacing: 6px;
}

/* ARENA MATCHES */
.arena-matches {
    padding: 25px 20px;
}

.arena-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    margin-bottom: 0;
}

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

.gladiator-team.left {
    justify-content: flex-start;
}

.gladiator-team.right {
    justify-content: flex-end;
}

.gladiator-team img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(201, 162, 39, 0.3));
}

.gladiator-team span {
    font-family: var(--font-display);
    font-size: 14px;
    color: #FFFFFF;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.versus-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.versus-text {
    font-family: var(--font-hero);
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 2px;
}

.arena-btn {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.arena-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.6);
    border-color: #FFFFFF;
}

.arena-btn .tg-icon {
    width: 22px;
    height: 22px;
    color: var(--amaranto-dark);
}

/* ARENA DIVIDER */
.arena-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.arena-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--gold) 50%, 
        transparent);
}

.arena-divider .sword-cross {
    width: 24px;
    height: 24px;
    color: var(--gold);
    opacity: 0.7;
}

/* ARENA FOOTER */
.arena-footer {
    padding: 20px;
    background: linear-gradient(180deg, 
        rgba(201, 162, 39, 0.05) 0%, 
        rgba(201, 162, 39, 0.15) 100%);
    border-top: 2px solid var(--gold);
    text-align: center;
}

.arena-footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-style: italic;
}

.arena-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: var(--amaranto-dark);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.arena-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
}

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

/* ARENA BOX COMPACT */
.arena-matches.compact {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arena-matches.compact .arena-match {
    padding: 12px 15px;
    margin-bottom: 0;
}

.arena-matches.compact .gladiator-team img {
    width: 32px;
    height: 32px;
}

.arena-matches.compact .gladiator-team span {
    font-size: 13px;
    letter-spacing: 1px;
}

.arena-matches.compact .versus-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-display);
    background: rgba(201, 162, 39, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--gold);
}

.arena-footer.compact {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arena-footer.compact p {
    display: none;
}

.arena-cta.primary {
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.arena-cta.secondary {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: none;
}

.arena-cta.secondary:hover {
    background: rgba(201, 162, 39, 0.15);
    border-color: var(--gold);
    transform: none;
    box-shadow: none;
}

/* SCORE BUTTON */
.score-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 70px;
}

.score-btn span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--amaranto-dark);
    letter-spacing: 2px;
}

.score-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
    border-color: #FFFFFF;
}

/* STACKED CTA BUTTON */
.arena-cta.stacked {
    flex-direction: column;
    padding: 12px 20px;
    gap: 4px;
}

.arena-cta.stacked .cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.arena-cta.stacked .cta-sub {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: var(--amaranto-dark);
}

/* RESPONSIVE HERO DUE COLONNE */
@media (max-width: 900px) {
    .hero-two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .countdown-row-roman {
        gap: 12px;
    }
    
    .countdown-box-roman {
        padding: 15px 20px;
        min-width: 80px;
    }
    
    .countdown-number-roman {
        font-size: 36px;
    }
    
    .gladia-photo {
        width: 180px;
        height: 180px;
    }
    
    .gladia-name {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .countdown-row-roman {
        gap: 8px;
    }
    
    .countdown-box-roman {
        padding: 12px 15px;
        min-width: 70px;
    }
    
    .countdown-number-roman {
        font-size: 28px;
    }
    
    .countdown-box-roman small {
        font-size: 9px;
    }
    
    .gladia-photo {
        width: 150px;
        height: 150px;
    }
    
    .gladia-name {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .gladiator-team span {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .gladiator-team img {
        width: 30px;
        height: 30px;
    }
    
    .arena-box {
        max-width: 100%;
    }
    
    .arena-header {
        padding: 15px;
        gap: 10px;
    }
    
    .arena-pillars .pillar {
        width: 6px;
        height: 28px;
    }
    
    .arena-name {
        font-size: 20px;
        letter-spacing: 4px;
    }
    
    .arena-matches {
        padding: 15px;
    }
    
    .arena-match {
        padding: 12px;
        gap: 10px;
    }
    
    .versus-container {
        gap: 5px;
    }
    
    .arena-btn {
        width: 38px;
        height: 38px;
    }
    
    .arena-btn .tg-icon {
        width: 18px;
        height: 18px;
    }
    
    .arena-footer {
        padding: 15px;
    }
    
    .arena-cta {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Hero Serie A Box */
.hero-seria-box {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

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

.seria-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

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

.seria-label {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 2px;
}

.seria-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.seria-matches-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.seria-match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 15px;
}

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

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

.match-team span {
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}

.match-telegram-btn {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.match-telegram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

.match-telegram-btn .tg-icon {
    width: 20px;
    height: 20px;
    fill: var(--amaranto-dark);
}

.seria-footer {
    text-align: center;
    margin-bottom: 15px;
}

.seria-footer span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.seria-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--gold-gradient);
    border-radius: 12px;
    color: var(--amaranto-dark);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.seria-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.seria-cta-btn .tg-icon {
    width: 22px;
    height: 22px;
    fill: var(--amaranto-dark);
}

/* ========================================
   SECTIONS - ALTERNATE COLORS
   ======================================== */
.section {
    padding: 100px 20px;
    position: relative;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(155, 27, 48, 0.1);
    border: 1px solid rgba(155, 27, 48, 0.3);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--amaranto);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    color: var(--text-dark);
    letter-spacing: 3px;
    line-height: 1.2;
}

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

.section-desc {
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
}

/* CHI SONO Section - SFONDO BIANCO */
.section-chi {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.chi-content {
    max-width: 700px;
    margin: 0 auto;
}

/* Layout Romano Chi Sono */
.chi-roman-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.chi-photo-frame {
    position: relative;
    text-align: center;
}

.chi-frame-border {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, var(--gold) 0%, #D4AF37 50%, var(--gold) 100%);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(155, 27, 48, 0.2), 0 0 0 3px rgba(155, 27, 48, 0.1);
}

.chi-frame-border::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--amaranto);
    border-radius: 16px;
    opacity: 0.3;
}

.chi-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.chi-laurel-decor {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    color: var(--gold);
}

.chi-laurel-decor.right {
    transform: translateX(-50%) scaleX(-1);
}

.chi-content-roman {
    text-align: center;
}

.chi-card-roman {
    background: #FFFFFF;
    border: 3px solid var(--gold);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 15px 50px rgba(155, 27, 48, 0.15);
}

.chi-card-roman::before,
.chi-card-roman::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid var(--amaranto);
}

.chi-card-roman::before {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
    border-radius: 10px 0 0 0;
}

.chi-card-roman::after {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 10px 0;
}

.chi-icon-roman {
    width: 70px;
    height: 70px;
    background: var(--amaranto-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(155, 27, 48, 0.3);
    border: 3px solid var(--gold);
}

.chi-icon-roman svg {
    width: 32px;
    height: 32px;
    fill: #FFFFFF;
}

.chi-text-roman {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
}

.chi-text-roman strong {
    color: var(--amaranto);
}

.chi-divider-roman {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.chi-divider-roman span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.chi-divider-roman svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.chi-cta-roman {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--amaranto-gradient);
    padding: 14px 28px;
    border-radius: 30px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(155, 27, 48, 0.35);
    border: 2px solid var(--gold);
}

.chi-cta-roman:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(155, 27, 48, 0.45);
}

.chi-cta-roman .tg-icon {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

/* Responsive Chi Sono Roman */
@media (max-width: 900px) {
    .chi-roman-layout {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .chi-content-roman {
        grid-column: 1 / -1;
        order: -1;
    }
    
    .chi-photo {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .chi-roman-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chi-photo-frame:last-child {
        display: none;
    }
    
    .chi-photo {
        height: 250px;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .chi-card-roman {
        padding: 30px 20px;
    }
    
    .chi-text-roman {
        font-size: 15px;
    }
}

.chi-card {
    background: #FFFFFF;
    border: 2px solid rgba(155, 27, 48, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.chi-icon {
    width: 70px;
    height: 70px;
    background: var(--amaranto-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(155, 27, 48, 0.3);
}

.chi-icon svg {
    width: 35px;
    height: 35px;
    fill: #FFFFFF;
}

.chi-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.chi-text strong {
    color: var(--amaranto);
}

/* METODO Section - SFONDO AMARANTO */
.section-metodo {
    background: var(--amaranto);
    position: relative;
    overflow: hidden;
}

/* Override per sezioni con sfondo amaranto */
.section-metodo .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--gold);
}

.section-metodo .section-header h2 {
    color: #FFFFFF;
}

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

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.metodo-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metodo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metodo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.metodo-card:hover::before {
    opacity: 1;
}

.metodo-card.featured {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    transform: scale(1.03);
}

.metodo-card.featured::before {
    opacity: 1;
}

.metodo-number {
    font-family: var(--font-hero);
    font-size: 40px;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 10px;
}

.metodo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.metodo-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.metodo-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

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

.metodo-card p strong {
    color: var(--gold);
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-gradient);
    padding: 18px 35px;
    border-radius: 50px;
    color: var(--amaranto-dark);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(201, 162, 39, 0.4);
}

.section-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(201, 162, 39, 0.5);
}

.section-cta .tg-icon {
    width: 22px;
    height: 22px;
    fill: var(--amaranto-dark);
}

/* CTA Centrato nella sezione Metodo */
.section-metodo .section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-metodo .section-cta {
    margin-top: 40px;
}

/* RISULTATI Section - SFONDO BIANCO */
.section-risultati {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.risultati-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Galleria Vittorie - Screenshot 3 colonne */
.vittorie-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    align-items: start;
}

.vittorie-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vittoria-screen {
    overflow: hidden;
    transition: all 0.3s ease;
}

.vittoria-screen:hover {
    transform: scale(1.03);
}

.vittoria-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Contenitore CTA centrato */
.vittorie-cta-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.vittorie-cta {
    margin: 0;
}

/* Responsive Vittorie Gallery */
@media (max-width: 768px) {
    .vittorie-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .vittorie-col {
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .vittorie-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .vittorie-col:first-child {
        grid-column: 1 / -1;
    }
    
    .vittorie-col:first-child .vittoria-screen {
        max-width: 70%;
        margin: 0 auto;
    }
}

.risultato-card {
    background: #FFFFFF;
    border: 2px solid rgba(155, 27, 48, 0.15);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.risultato-card:hover {
    transform: translateY(-5px);
    border-color: var(--amaranto);
    box-shadow: 0 10px 30px rgba(155, 27, 48, 0.15);
}

.risultato-card.featured {
    background: #FFFFFF;
    border-color: var(--amaranto);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(155, 27, 48, 0.2);
}

.risultato-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(155, 27, 48, 0.15);
}

.risultato-label {
    font-size: 10px;
    color: var(--amaranto);
    letter-spacing: 1px;
}

.risultato-quota {
    background: var(--amaranto-gradient);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
}

.risultato-match {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.risultato-score {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--amaranto);
    letter-spacing: 3px;
}

/* RECENSIONI Section - SFONDO AMARANTO */
.section-recensioni {
    background: var(--amaranto);
    position: relative;
    overflow: hidden;
}

.section-recensioni .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--gold);
}

.section-recensioni .section-header h2 {
    color: #FFFFFF;
}

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

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

.recensione-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.recensione-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.recensione-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.recensione-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.recensione-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-initial {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--amaranto-dark);
    font-size: 14px;
}

.recensione-author strong {
    display: block;
    color: #FFFFFF;
    font-size: 14px;
}

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

/* FAQ Section - SFONDO BIANCO */
.section-faq {
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid rgba(155, 27, 48, 0.15);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--amaranto);
    transition: transform 0.3s ease;
    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 25px 20px;
    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}

/* CTA SECTION - SFONDO AMARANTO */
.cta-section {
    padding: 100px 20px;
    background: var(--amaranto);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-laurels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.cta-laurel-left, .cta-laurel-right {
    width: 50px;
    height: 80px;
    color: var(--gold);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 52px);
    color: #FFFFFF;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.cta-content > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
}

.cta-btn-big {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-gradient);
    padding: 20px 45px;
    border-radius: 50px;
    color: var(--amaranto-dark);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.4);
}

.cta-btn-big:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.5);
}

.cta-btn-big .tg-icon {
    width: 24px;
    height: 24px;
    fill: var(--amaranto-dark);
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cta-note .shield-icon {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

/* BOTTOM FIXED BAR */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--amaranto);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.urgency-pulse {
    width: 12px;
    height: 12px;
    background: var(--amaranto);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.urgency-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--amaranto);
}

.urgency-text {
    font-size: 14px;
    color: #666666;
}

.fixed-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--amaranto-gradient);
    padding: 14px 30px;
    border-radius: 50px;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.fixed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 27, 48, 0.4);
}

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

/* MOBILE FIXED CTA */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 15px;
    right: 15px;
    z-index: 997;
}

.mobile-fixed-cta .mobile-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 4px 25px rgba(155, 27, 48, 0.4);
}

/* MOBILE TAB BAR */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--amaranto);
    padding: 8px 10px 20px;
}

.mobile-tab-bar {
    display: none;
    grid-template-columns: repeat(5, 1fr);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #666666;
    font-size: 10px;
    transition: color 0.3s ease;
}

.tab-item svg {
    width: 22px;
    height: 22px;
    stroke: #666666;
    transition: stroke 0.3s ease;
}

.tab-item:hover,
.tab-item:hover svg {
    color: var(--amaranto);
    stroke: var(--amaranto);
}

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

.tab-cta-btn {
    width: 50px;
    height: 50px;
    background: var(--amaranto-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -25px;
    box-shadow: 0 4px 20px rgba(155, 27, 48, 0.4);
}

.tab-cta-btn svg {
    stroke: #FFFFFF;
}

/* FOOTER */
.footer-disclaimer {
    background: #1A1A1A;
    border-top: 3px solid var(--amaranto);
    padding: 50px 20px 120px;
}

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

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

.adm-logo {
    height: 50px;
    object-fit: contain;
    opacity: 0.8;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--amaranto-gradient);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
}

.footer-brand-text {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-brand-text strong {
    color: var(--gold);
    font-family: var(--font-hero);
    letter-spacing: 3px;
}

.footer-warning {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-help {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

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

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 13px;
}

.footer-links span {
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

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

.champions-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(8px);
}

.popup-content {
    position: relative;
    background: #FFFFFF;
    border: 3px solid var(--amaranto);
    border-radius: 24px;
    padding: 35px 25px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(155, 27, 48, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(155, 27, 48, 0.2);
}

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

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

.popup-laurel-left, .popup-laurel-right {
    width: 35px;
    height: 70px;
    color: var(--amaranto);
}

.popup-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--amaranto);
    box-shadow: 0 8px 25px rgba(155, 27, 48, 0.2);
    object-fit: cover;
}

.popup-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(155, 27, 48, 0.1);
    border: 1px solid rgba(155, 27, 48, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.popup-badge:hover {
    background: rgba(155, 27, 48, 0.15);
}

.popup-badge .tg-icon {
    width: 24px;
    height: 24px;
    fill: var(--amaranto);
}

.popup-badge .badge-text {
    text-align: left;
}

.popup-badge .badge-text span {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
}

.popup-badge .badge-text small {
    color: var(--amaranto);
    font-size: 11px;
}

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

.countdown-item {
    background: rgba(155, 27, 48, 0.1);
    border: 1px solid rgba(155, 27, 48, 0.2);
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 60px;
}

.countdown-num {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--amaranto);
    line-height: 1;
}

.countdown-item small {
    font-size: 9px;
    color: #666666;
    text-transform: uppercase;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--amaranto);
    opacity: 0.5;
}

.popup-seria {
    background: rgba(155, 27, 48, 0.05);
    border: 1px solid rgba(155, 27, 48, 0.15);
    border-radius: 16px;
    padding: 20px;
}

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

.seria-header .seria-logo {
    width: 32px;
    height: 32px;
}

.seria-header .seria-title {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.seria-header .seria-label {
    font-size: 10px;
    color: var(--amaranto);
    letter-spacing: 1px;
}

.seria-header .seria-name {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text-dark);
}

.seria-matches {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.seria-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(155, 27, 48, 0.08);
    border-radius: 10px;
    padding: 10px 12px;
}

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

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

.seria-match .match-team span {
    font-size: 13px;
    color: var(--text-dark);
}

.seria-match .match-tg-btn {
    width: 36px;
    height: 36px;
    background: var(--amaranto-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

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

.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--amaranto-gradient);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(155, 27, 48, 0.4);
}

.popup-cta .tg-icon {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

/* POPUP ARENA BOX - Stile Risultati Esatti */
.popup-arena-box {
    background: linear-gradient(180deg, 
        rgba(30, 20, 15, 0.95) 0%, 
        rgba(45, 35, 25, 0.9) 50%,
        rgba(30, 20, 15, 0.95) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    overflow: hidden;
}

.popup-arena-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(180deg, 
        rgba(201, 162, 39, 0.2) 0%, 
        rgba(201, 162, 39, 0.05) 100%);
    border-bottom: 2px solid var(--gold);
}

.popup-arena-header .laurel-mini {
    width: 18px;
    height: 35px;
    color: var(--gold);
    opacity: 0.8;
}

.popup-arena-header .laurel-mini.laurel-right {
    transform: scaleX(-1);
}

.popup-arena-title {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.popup-arena-title .arena-label {
    font-family: var(--font-display);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3px;
}

.popup-arena-title .arena-name {
    font-family: var(--font-hero);
    font-size: 20px;
    color: var(--gold);
    letter-spacing: 4px;
}

.popup-arena-matches {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.popup-arena-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
}

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

.popup-team.left {
    justify-content: flex-start;
}

.popup-team.right {
    justify-content: flex-end;
}

.popup-team img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.popup-team span {
    font-family: var(--font-display);
    font-size: 12px;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.popup-score-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    padding: 6px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 55px;
}

.popup-score-btn span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--amaranto-dark);
    letter-spacing: 1px;
}

.popup-score-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.5);
}

.popup-arena-footer {
    padding: 12px;
    background: linear-gradient(180deg, 
        rgba(201, 162, 39, 0.05) 0%, 
        rgba(201, 162, 39, 0.15) 100%);
    border-top: 2px solid var(--gold);
}

.popup-arena-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
    padding: 12px 20px;
    background: var(--gold-gradient);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
}

.popup-arena-cta .cta-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--amaranto-dark);
    letter-spacing: 1px;
}

.popup-arena-cta .cta-main .tg-icon {
    width: 18px;
    height: 18px;
    fill: var(--amaranto-dark);
}

.popup-arena-cta .cta-sub {
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0.8;
    color: var(--amaranto-dark);
}

.popup-arena-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .header-center {
        display: none;
    }
    
    .metodo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metodo-card.featured {
        transform: none;
    }
    
    .risultati-showcase {
        grid-template-columns: 1fr;
    }
    
    .risultato-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .header-logo span {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .header-spots {
        display: none;
    }
    
    .mobile-header-cta {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .bottom-fixed {
        display: none;
    }
    
    .mobile-fixed-cta {
        display: none;
    }
    
    .mobile-tab-bar {
        display: grid;
    }
    
    .hero {
        padding: 100px 15px 80px;
    }
    
    .hero-logo-container {
        gap: 10px;
    }
    
    .hero-laurel-left, .hero-laurel-right {
        width: 35px;
        height: 70px;
    }
    
    .hero-logo {
        width: 90px;
        height: 90px;
    }
    
    .hero-telegram-badge {
        padding: 10px 18px;
    }
    
    .countdown-box {
        padding: 12px 15px;
        min-width: 65px;
    }
    
    .countdown-number {
        font-size: 26px;
    }
    
    .hero-seria-box {
        padding: 20px 15px;
    }
    
    .section {
        padding: 70px 15px;
    }
    
    .recensioni-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-laurel-left, .cta-laurel-right {
        width: 35px;
        height: 60px;
    }
    
    .footer-disclaimer {
        padding-bottom: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title .title-main {
        letter-spacing: 8px;
    }
    
    .countdown-row {
        gap: 6px;
    }
    
    .countdown-box {
        padding: 10px 12px;
        min-width: 55px;
    }
    
    .countdown-number {
        font-size: 22px;
    }
    
    .seria-match-item {
        padding: 10px 12px;
    }
    
    .match-team span {
        font-size: 12px;
    }
    
    .match-team img {
        width: 26px;
        height: 26px;
    }
}
