/* ========================================
   MISTER SOCCER LANDING - STILE CYBER/NEON
   Futuristico / Tech / Glassmorphism
   ======================================== */

/* Custom Fonts */
@font-face {
    font-family: 'AkiraExpanded';
    src: url('FONT/akira_expanded/Akira Expanded Demo.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

@font-face {
    font-family: 'HeadingNow';
    src: url('FONT/heading_now/HeadingNowTrial-04Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nexa';
    src: url('FONT/nexa/Nexa-Heavy.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Colors - Viola Neon Cyberpunk */
    --primary: #9333EA;
    --primary-dark: #7E22CE;
    --primary-light: #A855F7;
    --primary-gradient: linear-gradient(135deg, #9333EA 0%, #EC4899 100%);
    
    --neon-purple: #BF40BF;
    --neon-pink: #FF10F0;
    --neon-blue: #00D4FF;
    --electric: #E879F9;
    
    --accent: #EC4899;
    --accent-light: #F472B6;
    --accent-gradient: linear-gradient(45deg, #9333EA 0%, #EC4899 50%, #F97316 100%);
    
    /* Glassmorphism Dark Theme */
    --dark-bg: #0C0A1D;
    --dark-surface: rgba(20, 15, 40, 0.6);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.08);
    
    --white: #FFFFFF;
    --off-white: #F3E8FF;
    --black: #0C0A1D;
    --gray-900: #1A1625;
    --gray-800: #2D2640;
    --gray-700: #3D3555;
    --gray-600: #5C5478;
    --gray-500: #8B83A8;
    --gray-400: #AEA8C3;
    --gray-300: #D1CCE3;
    --gray-200: #E8E4F3;
    --gray-100: #F8F6FF;
    
    /* Neon Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --glow-purple: 0 0 40px rgba(147, 51, 234, 0.5), 0 0 80px rgba(147, 51, 234, 0.3);
    --glow-pink: 0 0 40px rgba(236, 72, 153, 0.5);
    --glow-neon: 0 0 20px rgba(191, 64, 191, 0.8), 0 0 40px rgba(191, 64, 191, 0.4);
    
    /* Typography */
    --font-display: 'AkiraExpanded', 'Nexa', sans-serif;
    --font-accent: 'Brunson', 'HeadingNow', sans-serif;
    --font-heading: 'Nexa', 'HeadingNow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --header-height: 70px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

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

/* Animated Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(147, 51, 234, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Floating Orbs Background */
.bg-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: 20%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-20px, 20px) scale(0.9); }
    75% { transform: translate(40px, 10px) scale(1.05); }
}

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

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

.legal-popup-content {
    background: var(--dark-surface);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--glow-purple), var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

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

.legal-popup-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.legal-logo {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.legal-logo img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    box-shadow: var(--glow-purple);
    object-fit: cover;
}

.legal-age-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--glow-purple);
    position: relative;
    z-index: 1;
}

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

.legal-popup-content h2 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.legal-popup-content p {
    color: var(--gray-300);
    margin-bottom: 15px;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.legal-terms {
    font-size: 12px !important;
    color: var(--gray-500) !important;
}

.legal-terms a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-terms a:hover {
    color: var(--accent);
}

.legal-accept-btn {
    width: 100%;
    padding: 18px 24px;
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 25px 0 20px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-purple);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.legal-accept-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.6);
}

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

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

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

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

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

.popup-content-urgency {
    position: relative;
    background: linear-gradient(145deg, rgba(20, 16, 40, 0.98) 0%, rgba(12, 10, 29, 0.98) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    box-shadow: var(--glow-purple), 0 25px 80px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.urgency-popup .popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    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;
}

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

.urgency-popup .popup-close:hover {
    background: rgba(147, 51, 234, 0.3);
}

.urgency-popup .popup-close:hover svg {
    stroke: var(--primary-light);
}

.popup-logo-urgency {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: var(--glow-purple);
    margin-bottom: 15px;
}

.popup-badge-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.popup-badge-urgency:hover {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--primary);
}

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

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

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

.badge-text-urgency strong {
    color: var(--primary-light);
}

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

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

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

.countdown-num-urgency {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

.countdown-item-urgency small {
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
}

.countdown-sep-urgency {
    font-size: 24px;
    color: var(--primary-light);
    font-weight: 700;
}

/* Popup Bomb Header */
.popup-bomb-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.popup-bomb-container {
    width: 60px;
    height: 70px;
    position: relative;
}

.popup-bomb-svg {
    width: 100%;
    height: 100%;
    animation: popupBombShake 0.5s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(147, 51, 234, 0.6));
}

@keyframes popupBombShake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.popup-bomb-title {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}

/* Popup Matches */
.popup-matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.popup-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(147, 51, 234, 0.08);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 12px 15px;
}

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

.popup-team.away {
    flex-direction: row-reverse;
    text-align: right;
}

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

.popup-team span {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
}

.popup-vs {
    font-family: var(--font-display);
    font-size: 11px;
    color: var(--primary-light);
    padding: 4px 10px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 6px;
    letter-spacing: 1px;
}

/* Popup Message */
.popup-message {
    font-size: 13px;
    color: var(--gray-300);
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(147, 51, 234, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

.popup-cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-gradient);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--glow-purple);
    letter-spacing: 1px;
}

.popup-cta-urgency .tg-icon {
    width: 20px;
    height: 20px;
    fill: var(--white);
}

.popup-cta-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.5);
}

/* ========================================
   HEADER - GLASSMORPHISM CYBER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 10, 29, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    height: var(--header-height);
}

.header.scrolled {
    background: rgba(12, 10, 29, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

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

.header-logo img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: var(--glow-purple);
    transition: transform 0.3s;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-logo span {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
}

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

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

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

.header-nav-links li a:hover {
    color: #fff;
    background: var(--glass);
}

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

.header-spots {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
}

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

@keyframes neonPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px #EF4444; }
    50% { opacity: 0.5; box-shadow: 0 0 20px #EF4444, 0 0 30px #EF4444; }
}

.header-spots strong {
    font-family: var(--font-heading);
    color: #EF4444;
    font-size: 14px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: var(--glow-purple);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.6);
}

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

/* Mobile Header */
@media (max-width: 768px) {
    .header {
        display: none;
    }
    
    .header-center {
        display: none;
    }
    
    .header-spots {
        display: none;
    }
    
    .header-logo span {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .header-cta {
        padding: 8px 14px;
        font-size: 11px;
    }
}

/* ========================================
   MOBILE HEADER CTA - NEON STYLE
   ======================================== */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.95) 0%, rgba(236, 72, 153, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 14px 16px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.3);
}

@media (max-width: 768px) {
    .mobile-header-cta {
        display: flex;
    }
}

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

.spots-pulse-ring {
    position: absolute;
    left: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulseRing 2s ease-out infinite;
}

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

.spots-pulse {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    animation: spotsPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #fff;
}

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

.mobile-spots-count {
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    font-weight: 700;
}

.mobile-spots-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mobile-cta-btn .tg-icon {
    width: 16px;
    height: 16px;
    fill: var(--primary-dark);
}

/* ========================================
   HERO - 3 COLONNE LAYOUT
   ======================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, var(--dark-bg) 0%, #100D25 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.15) 0%, transparent 60%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 60%);
}

/* Animated Lines */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.4;
}

.hero-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 50%, transparent 100%);
    animation: lineMove 8s linear infinite;
}

.hero-line:nth-child(1) { left: 10%; animation-delay: 0s; }
.hero-line:nth-child(2) { left: 30%; animation-delay: -2s; }
.hero-line:nth-child(3) { left: 50%; animation-delay: -4s; }
.hero-line:nth-child(4) { left: 70%; animation-delay: -6s; }
.hero-line:nth-child(5) { left: 90%; animation-delay: -1s; }

@keyframes lineMove {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* HERO TOP - TITOLO SOPRA LE COLONNE */
.hero-top {
    text-align: center;
    max-width: 800px;
}

/* Badge Style - Glassmorphism */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

/* Titolo Hero - AKIRA Style */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.hero-title span {
    display: block;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(14px, 2.5vw, 24px);
    letter-spacing: 3px;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 520px;
    line-height: 1.8;
    margin: 0 auto;
}

.hero-subtitle strong {
    color: var(--primary-light);
    font-weight: 600;
}

/* ========================================
   HERO 3 COLONNE
   ======================================== */
.hero-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

@media (max-width: 1024px) {
    .hero-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-col-chart {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-columns {
        grid-template-columns: 1fr;
    }
    
    .hero-col-chart {
        grid-column: span 1;
    }
}

.hero-col {
    display: flex;
}

.hero-col-card {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.hero-col-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: var(--glow-purple);
}

.hero-col-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-gradient);
}

/* Featured Card (Middle) */
.hero-col-featured {
    background: linear-gradient(145deg, rgba(147, 51, 234, 0.15) 0%, var(--glass) 100%);
    border-color: var(--primary);
    text-align: center;
}

.hero-col-featured::before {
    height: 3px;
}

.hero-col-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* ========================================
   BOMBA ANIMATA SVG
   ======================================== */
.bomb-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.bomb-container {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bomb-svg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    animation: bombShake 0.15s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 100, 0, 0.5));
}

/* Tremolio bomba */
@keyframes bombShake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-1px, 0) rotate(-0.5deg); }
    50% { transform: translate(1px, -1px) rotate(0.5deg); }
    75% { transform: translate(-0.5px, 0.5px) rotate(-0.3deg); }
}

/* Scintilla pulsante */
.bomb-spark {
    animation: sparkFlicker 0.1s ease-in-out infinite;
    transform-origin: 75px 25px;
}

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

/* Particelle scintilla */
.spark-particles .particle {
    animation: particleFly 0.8s ease-out infinite;
}

.particle.p1 { animation-delay: 0s; }
.particle.p2 { animation-delay: 0.2s; }
.particle.p3 { animation-delay: 0.4s; }
.particle.p4 { animation-delay: 0.6s; }

@keyframes particleFly {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--px, 10px), var(--py, -15px)) scale(0);
    }
}

.particle.p1 { --px: 8px; --py: -12px; }
.particle.p2 { --px: 12px; --py: 5px; }
.particle.p3 { --px: -5px; --py: -10px; }
.particle.p4 { --px: 15px; --py: -5px; }

/* Corpo bomba pulsante */
.bomb-body {
    animation: bombPulse 0.5s ease-in-out infinite;
    transform-origin: center;
}

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

/* Glow dietro la bomba */
.bomb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 100, 0, 0.6) 0%, rgba(255, 50, 0, 0.3) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 0.3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Miccia che brucia */
.bomb-fuse {
    stroke-dasharray: 50;
    stroke-dashoffset: 0;
    animation: fuseBurn 3s linear infinite;
}

@keyframes fuseBurn {
    0% { stroke-dashoffset: 0; stroke: #8B4513; }
    50% { stroke: #5C3317; }
    100% { stroke-dashoffset: 0; stroke: #8B4513; }
}

/* Particelle dinamiche JS */
.bomb-particle-dynamic {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10;
    animation: particleFlyDynamic 0.6s ease-out forwards;
    box-shadow: 0 0 6px currentColor;
}

@keyframes particleFlyDynamic {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--end-x, 10px), var(--end-y, -20px)) scale(0);
    }
}

.hero-col-icon {
    font-size: 24px;
}

.hero-col-header h3 {
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.hero-col-text {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 16px 0;
    flex: 1;
}

.hero-col-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: auto;
}

.hero-col-btn:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: var(--glow-purple);
}

.hero-col-btn .tg-icon {
    width: 18px;
    height: 18px;
}

.hero-col-btn-primary {
    background: var(--primary-gradient);
    border: none;
    box-shadow: var(--glow-purple);
}

.hero-col-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
}

/* ========================================
   COLONNA COUNTDOWN - INLINE
   ======================================== */
.hero-countdown-inline {
    margin: 10px 0;
}

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

.hero-countdown-inline .countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.2) 0%, rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 60px;
}

.hero-countdown-inline .countdown-number {
    font-family: var(--font-display);
    font-size: 26px;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
}

.hero-countdown-inline .countdown-box small {
    font-size: 9px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

.hero-countdown-inline .countdown-divider {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--primary);
    animation: dividerBlink 1s infinite;
    text-shadow: 0 0 10px var(--primary);
}

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

/* ========================================
   PARTITE INTEGRATE NEL COUNTDOWN
   ======================================== */
.hero-matches {
    margin: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(147, 51, 234, 0.15) 0%, rgba(147, 51, 234, 0.05) 100%);
    border: 1px solid rgba(147, 51, 234, 0.25);
    border-radius: var(--radius-md);
    padding: 10px 14px;
}

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

.hero-match .match-team.away {
    flex-direction: row-reverse;
    text-align: right;
}

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

.hero-match .match-team span {
    font-family: var(--font-heading);
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-match .match-vs {
    font-family: var(--font-display);
    font-size: 10px;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
    padding: 0 8px;
}

.hero-col-cta-text {
    font-family: var(--font-heading);
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin: 14px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.25) 0%, rgba(236, 72, 153, 0.15) 100%);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: var(--radius-md);
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.5);
}

/* ========================================
   COLONNA MISTER SOCCER (FOTO + TESTO)
   ======================================== */
.hero-mister-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: var(--primary-gradient);
    box-shadow: var(--glow-purple);
}

.hero-mister-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-col-featured h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.hero-mister-tagline {
    font-family: var(--font-accent);
    font-size: 15px;
    color: var(--primary-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Quote Box - Più visibile */
.hero-mister-quote {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin: 16px 0 20px;
    position: relative;
}

.hero-mister-quote .quote-mark {
    font-family: var(--font-accent);
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
    opacity: 0.6;
}

.hero-mister-quote p {
    font-family: var(--font-accent);
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.4);
}

/* Descrizione aggiuntiva */
.hero-mister-desc {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.hero-mister-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.mister-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
}

.mister-stat {
    text-align: center;
    flex: 1;
}

.mister-stat .stat-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 6px;
}

.mister-stat .stat-icon-svg {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.6)) drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
    animation: targetPulse 2s ease-in-out infinite;
}

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

@keyframes targetPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.6)) drop-shadow(0 0 15px rgba(236, 72, 153, 0.4));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(147, 51, 234, 0.8)) drop-shadow(0 0 25px rgba(236, 72, 153, 0.6));
    }
}

.mister-stat .stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    color: #fff;
    display: block;
    text-shadow: 0 0 20px var(--primary);
    margin-bottom: 6px;
}

.mister-stat .stat-desc {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* ========================================
   COLONNA PERFORMANCE DASHBOARD
   ======================================== */
.performance-dashboard {
    text-align: center;
    padding: 24px 20px !important;
}

.perf-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.perf-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--gray-400);
    letter-spacing: 2px;
}

.perf-icon {
    width: 18px;
    height: 18px;
    stroke: var(--primary-light);
}

.perf-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 20px;
}

.perf-badge.live {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #22C55E;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

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

/* Big Number */
.perf-big-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0 8px;
}

.perf-plus {
    font-family: var(--font-display);
    font-size: 28px;
    color: #22C55E;
    margin-right: 2px;
}

.perf-value {
    font-family: var(--font-display);
    font-size: 52px;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.5);
    animation: valueGlow 2s ease-in-out infinite;
}

@keyframes valueGlow {
    0%, 100% { text-shadow: 0 0 30px rgba(34, 197, 94, 0.5); }
    50% { text-shadow: 0 0 50px rgba(34, 197, 94, 0.8), 0 0 80px rgba(34, 197, 94, 0.4); }
}

.perf-percent {
    font-family: var(--font-display);
    font-size: 24px;
    color: #22C55E;
    margin-left: 2px;
    margin-top: 8px;
}

.perf-period {
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 1px;
    margin-bottom: 14px;
}

/* MONTH SLIDER - Mesi che scorrono */
.perf-month-slider {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.15) 0%, rgba(236, 72, 153, 0.08) 100%);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.month-display {
    margin-bottom: 12px;
}

.month-name {
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    animation: monthFadeIn 0.4s ease-out;
}

@keyframes monthFadeIn {
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.month-year {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 2px;
}

.month-result {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 14px;
    animation: resultPop 0.3s ease-out;
}

@keyframes resultPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.month-result .result-sign {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
    margin-right: 2px;
}

.month-result .result-value {
    font-family: var(--font-display);
    font-size: 56px;
    color: #fff;
    line-height: 1;
}

.month-result .result-percent {
    font-family: var(--font-display);
    font-size: 24px;
    margin-left: 2px;
    margin-top: 8px;
}

.month-result.positive .result-sign,
.month-result.positive .result-percent {
    color: #22C55E;
}

.month-result.positive .result-value {
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

.month-result.negative .result-sign,
.month-result.negative .result-percent {
    color: #EF4444;
}

.month-result.negative .result-value {
    text-shadow: 0 0 30px rgba(239, 68, 68, 0.6);
}

/* Barra del mese */
.month-bar-container {
    height: 8px;
    background: var(--glass);
    border-radius: 4px;
    overflow: hidden;
}

.month-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.5s ease-out, background 0.3s;
    width: 0%;
}

.month-bar.positive {
    background: linear-gradient(90deg, #22C55E, #10B981);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.month-bar.negative {
    background: linear-gradient(90deg, #EF4444, #DC2626);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

/* Timeline dei mesi */
.perf-timeline {
    margin-bottom: 16px;
    position: relative;
}

.timeline-track {
    height: 3px;
    background: var(--glass-border);
    border-radius: 2px;
    margin-bottom: 10px;
    overflow: hidden;
}

.timeline-progress {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease-out;
    box-shadow: 0 0 10px var(--primary);
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    padding: 0 2px;
}

.timeline-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.timeline-dots .dot:hover {
    background: var(--gray-500);
    transform: scale(1.2);
}

.timeline-dots .dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    transform: scale(1.3);
}

.timeline-dots .dot.passed {
    background: var(--primary-light);
}

/* Totale cumulativo */
.perf-cumulative {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 14px;
}

.cumul-label {
    font-size: 12px;
    color: var(--gray-400);
}

.cumul-value {
    font-family: var(--font-display);
    font-size: 20px;
    color: #22C55E;
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
}

/* Mini Stats Row */
.perf-mini-stats {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 14px;
}

.perf-mini {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    font-size: 11px;
    color: var(--gray-400);
}

.perf-mini svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.perf-mini.win {
    border-color: rgba(34, 197, 94, 0.3);
}

.perf-mini.win svg {
    stroke: #22C55E;
}

.perf-mini.win strong {
    color: #22C55E;
}

.perf-mini.loss {
    border-color: rgba(239, 68, 68, 0.3);
}

.perf-mini.loss svg {
    stroke: #EF4444;
}

.perf-mini.loss strong {
    color: #EF4444;
}

.perf-mini.rate {
    border-color: rgba(147, 51, 234, 0.3);
}

.rate-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary-gradient);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 9px;
    font-weight: 700;
    color: #fff;
}

/* Bottom Tagline */
.perf-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.2) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.4);
    border-radius: var(--radius-md);
}

.tagline-icon-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.6));
    animation: boltPulse 1.5s ease-in-out infinite;
}

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

.tagline-icon-svg .bolt-main {
    animation: boltFlash 2s ease-in-out infinite;
}

@keyframes boltPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(147, 51, 234, 0.6));
    }
    50% { 
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.9));
    }
}

@keyframes boltFlash {
    0%, 90%, 100% { opacity: 1; }
    92%, 94%, 96% { opacity: 0.3; }
    93%, 95% { opacity: 1; }
}

.tagline-content {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tagline-main {
    font-family: var(--font-heading);
    font-size: 11px;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tagline-vs {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary);
}

.tagline-secondary {
    font-family: var(--font-heading);
    font-size: 11px;
    color: var(--gray-500);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: line-through;
    text-decoration-color: rgba(239, 68, 68, 0.6);
}

.tagline-icon {
    font-size: 14px;
    animation: iconBounce 1s ease-in-out infinite;
}

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

/* ========================================
   SERIE A BOX - COMPATTO (sotto le colonne)
   ======================================== */
.hero-seria-box {
    background: var(--glass);
    backdrop-filter: blur(40px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    width: 100%;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-seria-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
}

.seria-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

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

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

.seria-label {
    font-size: 9px;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.seria-name {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    letter-spacing: 4px;
}

.seria-matches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .seria-matches {
        grid-template-columns: 1fr;
    }
}

.seria-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--glass-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: all 0.3s;
}

.seria-match:hover {
    background: rgba(147, 51, 234, 0.15);
    border-color: rgba(147, 51, 234, 0.4);
    transform: translateY(-2px);
}

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

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

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

.match-team span {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.match-tg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary-gradient);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--glow-purple);
    flex-shrink: 0;
}

.match-tg-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.8);
}

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

.seria-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: var(--primary-gradient);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: var(--glow-purple);
    position: relative;
    z-index: 1;
}

.seria-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
}

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

/* ========================================
   SEZIONI GENERALI - CYBER STYLE
   ======================================== */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 38px);
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   SPECIALITÀ - MINIMAL GLOW CARDS
   ======================================== */
.section-specialita {
    background: linear-gradient(180deg, #100D25 0%, var(--dark-bg) 100%);
}

.specialita-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card minimalista con linea laterale */
.specialita-card {
    width: 300px;
    padding: 40px 30px;
    background: rgba(15, 12, 30, 0.6);
    border: none;
    border-left: 3px solid #9333EA;
    position: relative;
    transition: all 0.4s ease;
    text-align: left;
}

.specialita-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -3px;
    width: 3px;
    height: 0%;
    background: linear-gradient(180deg, #9333EA, #EC4899);
    transition: height 0.4s ease;
}

.specialita-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.specialita-card:hover {
    transform: translateX(10px);
    background: rgba(20, 16, 40, 0.8);
}

.specialita-card:hover::before {
    height: 100%;
}

.specialita-card:hover::after {
    opacity: 1;
}

/* Featured - linea più brillante */
.specialita-card.featured {
    border-left-color: #EC4899;
}

.specialita-card.featured::before {
    background: linear-gradient(180deg, #EC4899, #9333EA);
}

/* Icona semplice */
.specialita-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
}

.specialita-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(147, 51, 234, 0.4));
    transition: all 0.3s ease;
}

.specialita-card:hover .specialita-icon svg {
    filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.8));
    transform: scale(1.1);
}

/* Titolo */
.specialita-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* Rimuovo le particelle non necessarie */
.specialita-card .hex-particle {
    display: none;
}

/* ========================================
   ULTIME MULTIPLE VINTE - GALLERY
   ======================================== */
.section-wins {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #100D25 100%);
}

.wins-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.win-image {
    flex: 0 0 auto;
    width: auto;
    max-width: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    line-height: 0;
}

.win-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22C55E, #10B981);
    z-index: 2;
}

.win-image::after {
    content: 'VINTA ✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(34, 197, 94, 0.9);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.win-image img {
    width: 100%;
    height: auto;
    display: block;
}

.win-image:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2);
}

/* ========================================
   COME FUNZIONA - TIMELINE STYLE
   ======================================== */
.section-come-funziona {
    background: linear-gradient(180deg, #100D25 0%, var(--dark-bg) 100%);
}

.funziona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

/* Connection Line */
.funziona-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .funziona-grid {
        grid-template-columns: 1fr;
    }
    
    .funziona-grid::before {
        display: none;
    }
}

.funziona-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.funziona-num {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: #fff;
    box-shadow: var(--glow-purple);
    position: relative;
    z-index: 1;
}

.funziona-step h3 {
    font-family: var(--font-display);
    font-size: 16px;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

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

/* ========================================
   CHI SONO - PROFILE SECTION
   ======================================== */
.section-chi-sono {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #100D25 100%);
}

.chi-sono-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .chi-sono-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

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

.chi-sono-photo-frame {
    position: relative;
    display: inline-block;
    padding: 6px;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    box-shadow: var(--glow-purple);
}

.chi-sono-photo-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.chi-sono-photo {
    width: 280px;
    height: 280px;
    border-radius: calc(var(--radius-xl) - 6px);
    object-fit: cover;
    display: block;
}

.chi-sono-content h3 {
    font-family: var(--font-display);
    font-size: clamp(22px, 4vw, 32px);
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.chi-sono-tagline {
    font-family: var(--font-accent);
    font-size: 20px;
    color: var(--primary-light);
    margin-bottom: 24px;
    font-style: italic;
}

.chi-sono-text {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
}

.chi-sono-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .chi-sono-stats {
        justify-content: center;
    }
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary-light);
    display: block;
    text-shadow: 0 0 20px var(--primary);
}

.stat-icon-inline {
    width: 32px;
    height: 32px;
    margin: 0 auto 4px;
    filter: drop-shadow(0 0 8px rgba(147, 51, 234, 0.6));
}

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

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

/* ========================================
   RECENSIONI - TESTIMONIALS GRID
   ======================================== */
.section-recensioni {
    background: linear-gradient(180deg, #100D25 0%, var(--dark-bg) 100%);
}

.recensioni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.recensione-card {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s;
    position: relative;
}

.recensione-card:hover {
    transform: translateY(-5px);
    border-color: rgba(147, 51, 234, 0.3);
    box-shadow: var(--glow-purple);
}

.recensione-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-accent);
    font-size: 60px;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.recensione-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.recensione-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
}

.recensione-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

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

.recensione-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.recensione-stars svg {
    width: 16px;
    height: 16px;
    fill: #FBBF24;
}

.recensione-text {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.7;
    font-style: italic;
}

.recensione-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 12px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 20px;
    font-size: 11px;
    color: #22C55E;
    font-weight: 600;
}

.recensione-badge svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ========================================
   FAQ - ACCORDION STYLE
   ======================================== */
.section-faq {
    background: linear-gradient(180deg, var(--dark-bg) 0%, #100D25 100%);
}

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

.faq-item {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(147, 51, 234, 0.3);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--glow-purple);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--glass-strong);
}

.faq-question h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-light);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    background: var(--primary-gradient);
    border-color: transparent;
}

.faq-item.active .faq-icon svg {
    stroke: #fff;
    transform: rotate(180deg);
}

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

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

.faq-answer-content {
    padding: 0 26px 22px;
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ========================================
   CTA FINALE - NEON GLOW
   ======================================== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #100D25 0%, var(--dark-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(147, 51, 234, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(147, 51, 234, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

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

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 42px);
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section h2 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-btn-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 22px 50px;
    border-radius: var(--radius-lg);
    font-family: var(--font-display);
    font-size: 18px;
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: var(--glow-purple);
    position: relative;
    overflow: hidden;
}

.cta-btn-big::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-big:hover::before {
    left: 100%;
}

.cta-btn-big:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(147, 51, 234, 0.6);
}

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

.cta-note {
    margin-top: 24px;
    font-size: 13px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========================================
   FOOTER - MINIMAL CYBER
   ======================================== */
.footer {
    background: #06050F;
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--primary-gradient);
}

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

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

.footer-logo img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    object-fit: cover;
    border: 2px solid var(--primary);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    letter-spacing: 4px;
}

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

.adm-logo {
    height: 36px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.adm-logo:hover {
    opacity: 1;
}

.footer-18 .age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 14px;
    color: #fff;
}

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

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

.footer-warning {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.footer-copy {
    font-size: 11px;
    color: var(--gray-600);
    letter-spacing: 1px;
}

/* ========================================
   MOBILE TAB BAR - CYBER STYLE
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(12, 10, 29, 0.95);
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--glass-border);
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
    .mobile-tab-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    body {
        padding-bottom: 85px;
    }
}

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

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

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

.tab-item.tab-cta {
    color: #fff;
}

.tab-cta-btn {
    width: 54px;
    height: 54px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-purple);
    margin-top: -24px;
    transition: all 0.3s;
}

.tab-cta-btn:hover {
    transform: scale(1.1);
}

.tab-cta-btn svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}

/* ========================================
   BOTTOM FIXED BAR (Desktop) - NEON
   ======================================== */
.bottom-fixed {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(12, 10, 29, 0.95);
    backdrop-filter: blur(30px);
    border-top: 1px solid var(--glass-border);
    padding: 18px 24px;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

@media (min-width: 769px) {
    .bottom-fixed {
        display: flex;
    }
}

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

.urgency-pulse {
    width: 12px;
    height: 12px;
    background: #EF4444;
    border-radius: 50%;
    animation: neonPulse 1.5s ease-in-out infinite;
}

.urgency-number {
    font-family: var(--font-display);
    font-size: 22px;
    color: #EF4444;
    text-shadow: 0 0 10px #EF4444;
}

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

.fixed-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 14px 35px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: var(--glow-purple);
}

.fixed-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
}

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

/* ========================================
   UTILITIES
   ======================================== */
.tg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Utility Classes */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

/* Neon Text */
.neon-text {
    text-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary), 0 0 40px var(--primary);
}

@media (max-width: 768px) {
    .hero-container {
        padding: 30px 16px 80px;
        gap: 30px;
    }
    
    .hero-top {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .hero-col-card {
        padding: 22px 18px;
    }
    
    .hero-col-header h3 {
        font-size: 12px;
    }
    
    .hero-countdown-inline .countdown-box {
        padding: 10px 12px;
        min-width: 50px;
    }
    
    .hero-countdown-inline .countdown-number {
        font-size: 22px;
    }
    
    .hero-mister-photo {
        width: 80px;
        height: 80px;
    }
    
    .hero-mister-stats {
        gap: 16px;
    }
    
    .mister-stat .stat-value {
        font-size: 18px;
    }
    
    .chart-bars {
        height: 100px;
    }
    
    .chart-bar {
        max-width: 18px;
    }
    
    .bar-month {
        font-size: 7px;
    }
    
    .hero-seria-box {
        padding: 18px 14px;
    }
    
    .seria-match {
        padding: 10px 12px;
    }
    
    .match-team span {
        font-size: 11px;
    }
    
    .match-team img {
        width: 22px;
        height: 22px;
    }
    
    .match-tg-btn {
        width: 30px;
        height: 30px;
    }
    
    .match-tg-btn .tg-icon {
        width: 14px;
        height: 14px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .chi-sono-photo {
        width: 200px;
        height: 200px;
    }
    
    /* ========================================
       MOBILE OPTIMIZATION - COMPREHENSIVE
       ======================================== */
    
    /* Mobile Header CTA - riposizionato in alto */
    .mobile-header-cta {
        top: 0;
        padding: 10px 12px;
    }
    
    .mobile-spots .spots-text {
        font-size: 11px;
    }
    
    .mobile-cta-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    /* Hero - Ottimizzato */
    .hero {
        padding-top: 70px;
        min-height: auto;
    }
    
    .hero-columns {
        gap: 16px;
    }
    
    .hero-col-card {
        padding: 18px 14px;
    }
    
    .hero-col-header {
        margin-bottom: 14px;
    }
    
    .hero-col-header h3 {
        font-size: 11px;
        letter-spacing: 2px;
    }
    
    /* Countdown compatto */
    .hero-countdown-inline {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .hero-countdown-inline .countdown-box {
        padding: 8px 10px;
        min-width: 45px;
    }
    
    .hero-countdown-inline .countdown-number {
        font-size: 18px;
    }
    
    .hero-countdown-inline .countdown-label {
        font-size: 7px;
    }
    
    .countdown-separator {
        font-size: 16px;
    }
    
    /* Matches compatte */
    .matches-list {
        gap: 8px;
    }
    
    .match-row {
        padding: 10px 12px;
    }
    
    .match-row .match-team img {
        width: 20px;
        height: 20px;
    }
    
    .match-row .match-team span {
        font-size: 10px;
    }
    
    .match-row .match-vs {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    /* Mister Card */
    .hero-mister-photo {
        width: 70px;
        height: 70px;
    }
    
    .hero-mister-name {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .hero-mister-title {
        font-size: 10px;
    }
    
    .hero-mister-stats {
        gap: 12px;
    }
    
    .mister-stat .stat-value {
        font-size: 16px;
    }
    
    .mister-stat .stat-label {
        font-size: 8px;
    }
    
    /* Month Slider */
    .month-slider-container {
        padding: 0 5px;
    }
    
    .month-slider-track {
        gap: 10px;
    }
    
    .month-item {
        min-width: 55px;
        padding: 12px 8px;
    }
    
    .month-profit {
        font-size: 14px;
    }
    
    .month-name {
        font-size: 8px;
    }
    
    /* Urgency Popup - Mobile */
    .popup-content-urgency {
        padding: 20px 16px;
        max-width: 340px;
        margin: 10px;
    }
    
    .popup-bomb-container {
        width: 50px;
        height: 60px;
    }
    
    .popup-bomb-title {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .popup-match {
        padding: 10px 12px;
    }
    
    .popup-team img {
        width: 22px;
        height: 22px;
    }
    
    .popup-team span {
        font-size: 11px;
    }
    
    .popup-vs {
        font-size: 9px;
        padding: 3px 8px;
    }
    
    .popup-countdown-urgency {
        gap: 6px;
    }
    
    .countdown-num-urgency {
        font-size: 22px;
    }
    
    .countdown-item-urgency small {
        font-size: 8px;
    }
    
    .popup-message {
        font-size: 12px;
        padding: 8px;
    }
    
    .popup-cta-urgency {
        padding: 12px 20px;
        font-size: 12px;
    }
    
    .popup-cta-urgency .tg-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Sections */
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 20px;
        letter-spacing: 3px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    /* Specialità Cards */
    .specialita-grid {
        gap: 20px;
    }
    
    .specialita-card {
        width: 100%;
        max-width: 100%;
        padding: 28px 20px;
    }
    
    .specialita-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .specialita-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .specialita-card h3 {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .specialita-card p {
        font-size: 13px;
    }
    
    /* Gallery - Multiple Vinte */
    .wins-gallery {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .win-image {
        max-width: 280px;
        width: 90%;
    }
    
    .win-image::after {
        font-size: 10px;
        padding: 5px 10px;
        top: 10px;
        right: 10px;
    }
    
    /* Come Funziona */
    .funziona-step {
        padding: 20px 16px;
    }
    
    .funziona-num {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 18px;
    }
    
    .funziona-step h3 {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .funziona-step p {
        font-size: 13px;
    }
    
    /* Chi Sono */
    .chi-sono-container {
        gap: 30px;
        text-align: center;
    }
    
    .chi-sono-photo {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }
    
    .chi-sono-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .chi-sono-stat h4 {
        font-size: 22px;
    }
    
    .chi-sono-text h3 {
        font-size: 18px;
    }
    
    .chi-sono-text p {
        font-size: 13px;
    }
    
    /* Recensioni */
    .recensioni-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .recensione-card {
        padding: 22px 18px;
    }
    
    .recensione-avatar {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .recensione-info h4 {
        font-size: 14px;
    }
    
    .recensione-text {
        font-size: 13px;
    }
    
    .recensione-card::before {
        font-size: 48px;
        top: 14px;
        right: 18px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 13px;
        padding-right: 10px;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
    
    .faq-answer p {
        font-size: 13px;
        padding: 0 20px 18px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-big-title {
        font-size: 22px;
        letter-spacing: 3px;
    }
    
    .cta-subtitle {
        font-size: 14px;
    }
    
    .cta-btn-big {
        padding: 16px 30px;
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .cta-btn-big .tg-icon {
        width: 22px;
        height: 22px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 100px;
    }
    
    .footer-logo img {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo span {
        font-size: 14px;
        letter-spacing: 2px;
    }
    
    .footer-disclaimer {
        font-size: 10px;
    }
    
    .footer-links {
        gap: 16px;
    }
    
    .footer-links a {
        font-size: 11px;
    }
    
    .footer-aams img {
        height: 30px;
    }
    
    /* Tab Bar ottimizzata */
    .mobile-tab-bar {
        padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    }
    
    .tab-item {
        font-size: 8px;
        padding: 5px 10px;
    }
    
    .tab-item svg {
        width: 20px;
        height: 20px;
    }
    
    .tab-cta-btn {
        width: 48px;
        height: 48px;
        margin-top: -20px;
    }
    
    .tab-cta-btn svg {
        width: 22px;
        height: 22px;
    }
    
    /* Seria Box */
    .hero-seria-box {
        padding: 14px 12px;
    }
    
    .seria-header h4 {
        font-size: 12px;
    }
    
    .seria-matches {
        gap: 8px;
    }
    
    .seria-match {
        padding: 8px 10px;
    }
    
    .seria-cta-btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}

/* ========================================
   EXTRA SMALL SCREENS (480px e sotto)
   ======================================== */
@media (max-width: 480px) {
    /* Hero Title */
    .hero-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .hero-badge {
        font-size: 9px;
        padding: 6px 12px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    /* Cards più compatte */
    .hero-col-card {
        padding: 14px 12px;
    }
    
    .hero-col-header h3 {
        font-size: 10px;
    }
    
    /* Countdown ancora più compatto */
    .hero-countdown-inline .countdown-box {
        padding: 6px 8px;
        min-width: 40px;
    }
    
    .hero-countdown-inline .countdown-number {
        font-size: 16px;
    }
    
    .countdown-separator {
        font-size: 14px;
    }
    
    /* Match Team names abbreviati */
    .match-row .match-team span {
        font-size: 9px;
        max-width: 65px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    /* Mister Card extra small */
    .hero-mister-photo {
        width: 60px;
        height: 60px;
    }
    
    .mister-stat .stat-value {
        font-size: 14px;
    }
    
    /* Month slider più compatto */
    .month-item {
        min-width: 48px;
        padding: 10px 6px;
    }
    
    .month-profit {
        font-size: 12px;
    }
    
    .month-name {
        font-size: 7px;
    }
    
    /* Popup ultra compact */
    .popup-content-urgency {
        padding: 16px 12px;
        max-width: 95%;
    }
    
    .popup-bomb-container {
        width: 40px;
        height: 50px;
    }
    
    .popup-bomb-title {
        font-size: 12px;
    }
    
    .popup-team span {
        font-size: 10px;
        max-width: 55px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .countdown-num-urgency {
        font-size: 18px;
    }
    
    .popup-cta-urgency {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    /* Section headers compatti */
    .section-header h2 {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    /* Specialità full width */
    .specialita-card {
        padding: 24px 16px;
    }
    
    .specialita-card h3 {
        font-size: 13px;
    }
    
    /* Gallery ancora più compatta */
    .win-image {
        max-width: 260px;
    }
    
    /* CTA compatto */
    .cta-big-title {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .cta-btn-big {
        padding: 14px 24px;
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    /* FAQ compatto */
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question h4 {
        font-size: 12px;
    }
}

/* ========================================
   TOUCH IMPROVEMENTS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Aree touch più grandi */
    .faq-question {
        min-height: 56px;
    }
    
    .tab-item {
        min-width: 44px;
        min-height: 44px;
    }
    
    .popup-close {
        width: 40px !important;
        height: 40px !important;
    }
    
    /* Rimuovi hover effects su touch */
    .hero-col-card:hover,
    .specialita-card:hover,
    .recensione-card:hover,
    .win-image:hover {
        transform: none;
    }
    
    /* Active states per feedback */
    .cta-btn-big:active,
    .popup-cta-urgency:active,
    .mobile-cta-btn:active {
        transform: scale(0.98);
    }
}

/* ========================================
   LANDSCAPE MOBILE
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding-top: 80px;
    }
    
    .hero-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-col-chart {
        grid-column: span 2;
    }
    
    .popup-content-urgency {
        max-width: 500px;
        padding: 16px 20px;
    }
    
    .popup-matches {
        flex-direction: row;
        gap: 10px;
    }
    
    .popup-match {
        flex: 1;
    }
}

