/* ========================================
   REA LANDING - STILE ROYAL
   Giallo / Nero / Premium
   ======================================== */

/* 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: 'Ethnocentric';
    src: url('ethnocentric/Ethnocentric-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Highrise';
    src: url('highrise/HighriseFont-Bold-Demo.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Colors - Giallo e Nero Royal */
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #C9A227;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    
    --yellow: #FFCC00;
    --yellow-light: #FFE066;
    --yellow-dark: #E6B800;
    
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-card: #141414;
    --black-border: #2A2A2A;
    
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --gray-100: #E8E8E8;
    --gray-200: #D0D0D0;
    --gray-300: #A0A0A0;
    --gray-400: #707070;
    --gray-500: #505050;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-gold-strong: 0 0 50px rgba(255, 215, 0, 0.5);
    
    /* Typography */
    --font-display: 'BuiltTitling', 'Poppins', sans-serif;
    --font-accent: 'Ethnocentric', sans-serif;
    --font-hero: 'Highrise', 'BuiltTitling', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
}

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

/* ========================================
   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: var(--black-card);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

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

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

.legal-logo img {
    height: 60px;
    object-fit: contain;
}

.legal-logo img:nth-child(2) {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.crown-left, .crown-right {
    width: 40px !important;
    height: 40px !important;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

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

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

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

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

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

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

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

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

.legal-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

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

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

/* ========================================
   CHAMPIONS 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: var(--black-card);
    border: 2px solid var(--gold);
    border-radius: 20px;
    padding: 30px 25px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 1;
    overflow: visible;
}

/* Popup Royal Style */
.popup-royal {
    padding-top: 40px;
}

.popup-decor {
    position: absolute;
    top: -15px;
    width: 35px;
    height: 35px;
    z-index: 10;
}

.popup-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.popup-decor-left {
    left: 20px;
}

.popup-decor-right {
    right: 20px;
    transform: scaleX(-1);
}

.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;
}

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

.popup-close:hover {
    background: rgba(255, 215, 0, 0.2);
}

.popup-close:hover svg {
    stroke: var(--gold);
}

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

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

.popup-badge-compact:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
}

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

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

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

.badge-text-compact strong {
    color: var(--gold);
}

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

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

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

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

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

.countdown-sep-compact {
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
}

.popup-seria-compact {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 20px;
}

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

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

.seria-title-compact {
    text-align: left;
}

.seria-label-compact {
    display: block;
    font-size: 10px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seria-name-compact {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--white);
    font-weight: 600;
}

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

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

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

.match-team-compact.away {
    flex-direction: row-reverse;
}

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

.match-team-compact span {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
}

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

.match-tg-btn-compact .tg-icon {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

.match-tg-btn-compact:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.popup-cta-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: var(--gold-gradient);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

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

.popup-cta-compact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

/* Popup Royal Countdown */
.popup-countdown-royal {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.08) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 16px;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-gold);
}

.countdown-label-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.countdown-label-popup .crown-mini {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

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

.countdown-box-popup {
    text-align: center;
}

.countdown-num-popup {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

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

.countdown-sep-popup {
    font-size: 30px;
    color: var(--gold);
    font-weight: 700;
    opacity: 0.7;
}

/* Popup Serie A Royal */
.popup-seria-royal {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 16px;
    padding: 18px;
}

.popup-footer-text {
    text-align: center;
    padding: 12px 10px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 165, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 12px;
}

.popup-footer-text span {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    text-transform: uppercase;
}

/* ========================================
   HEADER
   ======================================== */
.header-rea {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 12px 0;
}

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

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

.header-logo img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-gold);
}

.header-logo span {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 700;
}

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

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

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

.header-nav-links li a:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
}

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

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

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

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

.header-spots strong {
    font-family: var(--font-display);
    color: #FF5252;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

.header-cta .tg-icon {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

/* Mobile Header */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 16px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.25);
    justify-content: space-between;
    align-items: center;
}

.mobile-spots {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 8px 14px;
    border-radius: 30px;
}

.spots-pulse-ring {
    position: absolute;
    left: 6px;
    width: 24px;
    height: 24px;
    border: 2px solid #FF3B30;
    border-radius: 50%;
    animation: pulseRing 1.5s ease-out infinite;
}

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

.spots-pulse {
    width: 10px;
    height: 10px;
    background: #FF3B30;
    border-radius: 50%;
    margin-right: 6px;
}

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

.mobile-spots-label {
    font-size: 11px;
    color: var(--gray-300);
    font-weight: 500;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-gold);
    letter-spacing: 1px;
    transition: all 0.3s;
}

.mobile-cta-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-gold-strong);
}

.mobile-cta-btn .mobile-crown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

.mobile-cta-btn .tg-icon {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

.mobile-cta-btn span {
    font-weight: 700;
}

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

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decor-crown-left {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 80px;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    animation: floatSlow 6s ease-in-out infinite;
}

.decor-crown-right {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 80px;
    opacity: 0.15;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transform: scaleX(-1);
    animation: floatSlow 6s ease-in-out infinite 1s;
}

.decor-throne {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    opacity: 0.08;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
}

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

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

/* Foto Centrata Sopra */
.hero-photo-center {
    text-align: center;
    margin-bottom: 40px;
}

.hero-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.hero-right {
    display: flex;
    flex-direction: column;
}

.hero-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-gold-strong);
    margin-bottom: 20px;
    animation: logoPulse 3s ease-in-out infinite;
}

/* Hero Photo */
.hero-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-gold-strong);
    margin-bottom: 20px;
    object-fit: cover;
    animation: logoPulse 3s ease-in-out infinite;
}

/* Hero Photo Quadrata */
.hero-photo-square {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: var(--shadow-gold-strong);
    object-fit: cover;
    object-position: center bottom;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 50px rgba(255, 215, 0, 0.7); }
}

.hero-telegram-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    margin-bottom: 25px;
    transition: all 0.3s;
}

.hero-telegram-badge:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Badge Telegram Royal con Corona */
.hero-telegram-badge-royal {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 30px;
}

.badge-crown-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crown-svg {
    width: 80px;
    height: 48px;
    margin-bottom: -10px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    z-index: 2;
}

.badge-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid var(--gold);
    padding: 14px 24px;
    border-radius: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

.hero-telegram-badge-royal:hover .badge-inner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 165, 0, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

.badge-inner .tg-icon {
    width: 32px;
    height: 32px;
    fill: var(--gold);
}

.badge-inner .badge-text span {
    font-size: 16px;
    font-weight: 600;
}

.badge-inner .badge-text strong {
    color: var(--gold);
    font-size: 18px;
}

/* Countdown Grande */
.hero-countdown-big {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 165, 0, 0.08) 100%);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 25px 35px;
    display: inline-block;
    box-shadow: var(--shadow-gold);
    margin-bottom: 25px;
}

.countdown-label-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.crown-mini {
    width: 24px;
    height: 24px;
}

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

.countdown-box-big {
    text-align: center;
}

.countdown-number-big {
    display: block;
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.countdown-box-big small {
    font-size: 12px;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    display: block;
}

.countdown-divider-big {
    font-size: 42px;
    color: var(--gold);
    font-weight: 700;
    opacity: 0.7;
}

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

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

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

.badge-text strong {
    color: var(--gold);
}

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

.hero-title {
    font-family: var(--font-hero);
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

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

.hero-subtitle {
    font-size: 15px;
    color: var(--gray-200);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 450px;
}

.hero-subtitle strong {
    color: var(--gold);
}

/* Countdown */
.hero-countdown {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: inline-block;
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.countdown-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

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

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

.countdown-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

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

.countdown-divider {
    font-size: 28px;
    color: var(--gold);
    font-weight: 700;
    opacity: 0.6;
}

/* Serie A Box */
.hero-seria-box {
    background: var(--black-card);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: visible;
}

/* Decorazioni Box Partite */
.seria-box-decor {
    position: absolute;
    top: -15px;
    width: 35px;
    height: 35px;
    z-index: 10;
}

.seria-box-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.seria-box-decor-left {
    left: 15px;
}

.seria-box-decor-right {
    right: 15px;
    transform: scaleX(-1);
}

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

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

.seria-title {
    flex: 1;
    text-align: left;
}

.seria-label {
    display: block;
    font-size: 11px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seria-name {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--white);
    font-weight: 600;
}

.seria-time {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}

.time-live {
    width: 8px;
    height: 8px;
    background: #00C853;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.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(0, 0, 0, 0.4);
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

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

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

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

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

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

.match-tg-btn .tg-icon {
    width: 18px;
    height: 18px;
    fill: var(--black);
}

.match-tg-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold-strong);
}

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

.seria-footer span {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
}

/* Footer Grande */
.seria-footer-big {
    text-align: center;
    padding: 18px 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
}

.seria-footer-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

.seria-footer-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.seria-footer-big span {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.5;
    text-transform: uppercase;
}

.seria-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: var(--gold-gradient);
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

.seria-cta-btn .tg-icon {
    width: 20px;
    height: 20px;
    fill: var(--black);
}

.seria-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

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

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

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 48px);
    color: var(--white);
    letter-spacing: 3px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-300);
    max-width: 500px;
    margin: 15px auto 0;
}

/* Specialità */
.section-specialita {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.specialita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.specialita-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.specialita-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

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

.specialita-card.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, var(--black-card) 100%);
}

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

.card-crown {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.card-crown img {
    width: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.specialita-icon {
    margin-bottom: 20px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialita-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.specialita-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialita-card p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 88px;
    display: flex;
    align-items: flex-start;
    text-align: center;
}

/* Slot Machine Effect */
.slot-container {
    height: 40px;
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 0 15px;
    width: 100%;
    min-width: 200px;
}

.slot-container::before,
.slot-container::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 2;
    pointer-events: none;
}

.slot-container::before {
    top: 0;
    background: linear-gradient(to bottom, var(--black-card) 0%, transparent 100%);
}

.slot-container::after {
    bottom: 0;
    background: linear-gradient(to top, var(--black-card) 0%, transparent 100%);
}

.slot-track {
    display: flex;
    flex-direction: column;
    /* Animation handled by JavaScript for better mobile performance */
    will-change: transform;
}

.slot-item {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slot animation handled by JavaScript */

.specialita-link {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin-top: auto;
    padding-top: 10px;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.specialita-link:hover {
    letter-spacing: 3px;
}

/* Metodo */
.section-metodo {
    background: var(--black);
}

.metodo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.metodo-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s;
}

.metodo-step:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-gold);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    opacity: 0.8;
}

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

.step-content p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

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

.cta-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 18px 40px;
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: var(--shadow-gold);
}

.cta-btn-large .tg-icon {
    width: 24px;
    height: 24px;
    fill: var(--black);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-strong);
}

.cta-sub {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 15px;
}

/* ========================================
   VANTAGGI
   ======================================== */
.section-vantaggi {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.vantaggi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.vantaggio-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

.vantaggio-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

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

.vantaggio-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vantaggio-icon svg {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.vantaggio-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

.vantaggio-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.vantaggio-card p {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.6;
}

/* ========================================
   RECENSIONI
   ======================================== */
.section-recensioni {
    background: var(--black);
}

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

.recensione-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

.recensione-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 60px;
    font-family: serif;
    color: rgba(255, 215, 0, 0.1);
    line-height: 1;
}

.recensione-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-gold);
}

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

.recensione-text {
    font-size: 15px;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.recensione-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 1px;
}

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

/* ========================================
   FAQ
   ======================================== */
.section-faq {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

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

.faq-item {
    border: 1px solid var(--black-border);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    background: var(--black-card);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

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

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--white);
    text-align: left;
    letter-spacing: 0.5px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

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

/* ========================================
   BOTTOM FIXED BAR
   ======================================== */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 998;
}

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

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

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

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

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

.arrow-icon {
    width: 18px;
    height: 18px;
    stroke: var(--black);
}

.fixed-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
}

@media (max-width: 768px) {
    .bottom-fixed {
        display: none;
    }
}

/* Mobile Fixed CTA */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 997;
    width: calc(100% - 40px);
    max-width: 400px;
}

.mobile-cta-btn-fixed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: var(--gold-gradient);
    border-radius: 14px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    box-shadow: var(--shadow-gold-strong);
}

.mobile-cta-btn-fixed .tg-icon {
    width: 20px;
    height: 20px;
    fill: var(--black);
}

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

/* ========================================
   MOBILE TAB BAR
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding: 8px 10px 20px;
    z-index: 999;
}

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

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    transition: all 0.3s;
}

.tab-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--gray-400);
}

.tab-item span {
    font-size: 10px;
    color: var(--gray-400);
}

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

.tab-item.tab-cta {
    position: relative;
}

.tab-cta-btn {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -25px;
    box-shadow: var(--shadow-gold);
}

.tab-cta-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.tab-item.tab-cta span {
    color: var(--gold);
    margin-top: 4px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-disclaimer {
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    padding: 50px 20px 120px;
}

@media (min-width: 769px) {
    .footer-disclaimer {
        padding-bottom: 100px;
    }
}

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

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

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

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

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

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

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

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

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

.footer-links a:hover {
    opacity: 0.8;
}

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

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

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 50px;
    }
    
    .hero-photo-center {
        margin-bottom: 25px;
    }
    
    .hero-two-cols {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
        margin: 0 auto 15px;
    }
    
    .hero-photo {
        width: 110px;
        height: 110px;
        margin: 0 auto 15px;
    }
    
    .hero-photo-square {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-telegram-badge {
        padding: 10px 18px;
    }
    
    .crown-svg {
        width: 60px;
        height: 36px;
    }
    
    .badge-inner {
        padding: 10px 16px;
    }
    
    .badge-inner .tg-icon {
        width: 26px;
        height: 26px;
    }
    
    .badge-inner .badge-text span {
        font-size: 14px;
    }
    
    .badge-inner .badge-text strong {
        font-size: 16px;
    }
    
    .hero-countdown-big {
        padding: 18px 20px;
    }
    
    .countdown-number-big {
        font-size: 38px;
    }
    
    .countdown-divider-big {
        font-size: 32px;
    }
    
    .countdown-label-big {
        font-size: 12px;
    }
    
    .seria-footer-big span {
        font-size: 13px;
    }
    
    .hero-countdown {
        padding: 12px 15px;
    }
    
    .countdown-number {
        font-size: 26px;
    }
    
    .hero-seria-box {
        padding: 15px;
    }
    
    .seria-match {
        padding: 10px;
    }
    
    .match-team img {
        width: 22px;
        height: 22px;
    }
    
    .match-team span {
        font-size: 12px;
    }
    
    .match-tg-btn {
        width: 32px;
        height: 32px;
    }
    
    .match-tg-btn .tg-icon {
        width: 16px;
        height: 16px;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .specialita-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: stretch;
    }
    
    .specialita-card {
        padding: 20px 12px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .specialita-icon {
        height: 50px;
        margin-bottom: 12px;
        flex-shrink: 0;
    }
    
    .specialita-icon img {
        width: 40px;
        height: 40px;
    }
    
    .specialita-card h3 {
        font-size: 13px;
        min-height: 36px;
        margin-bottom: 10px;
        letter-spacing: 1px;
        line-height: 1.3;
        flex-shrink: 0;
    }
    
    .specialita-card p {
        font-size: 11px;
        min-height: 66px;
        margin-bottom: 12px;
        line-height: 1.5;
        flex-shrink: 0;
    }
    
    .slot-container {
        height: 30px;
        min-width: 100%;
        padding: 0 8px;
        margin-bottom: 15px;
        flex-shrink: 0;
    }
    
    .slot-item {
        height: 30px;
        font-size: 9px;
        letter-spacing: 0;
    }
    
    .specialita-link {
        font-size: 11px;
        min-height: auto;
        padding-top: 5px;
        margin-top: auto;
    }
    
    .card-crown img {
        width: 30px;
    }
    
    .card-crown {
        top: -12px;
    }
    
    .metodo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metodo-step {
        padding: 20px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .cta-btn-large {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    /* Vantaggi Mobile */
    .vantaggi-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .vantaggio-card {
        padding: 25px 15px;
    }
    
    .vantaggio-icon svg,
    .vantaggio-icon img {
        width: 45px;
        height: 45px;
    }
    
    .vantaggio-card h3 {
        font-size: 14px;
    }
    
    .vantaggio-card p {
        font-size: 12px;
    }
    
    /* Recensioni Mobile */
    .recensioni-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recensione-card {
        padding: 25px 20px;
    }
    
    .recensione-text {
        font-size: 14px;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .specialita-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }
    
    .specialita-card {
        padding: 16px 10px;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .specialita-icon {
        height: 45px;
        margin-bottom: 10px;
        flex-shrink: 0;
    }
    
    .specialita-icon img {
        width: 35px;
        height: 35px;
    }
    
    .specialita-card h3 {
        font-size: 11px;
        letter-spacing: 0.5px;
        min-height: 30px;
        flex-shrink: 0;
    }
    
    .specialita-card p {
        font-size: 10px;
        line-height: 1.4;
        min-height: 56px;
        flex-shrink: 0;
    }
    
    .slot-container {
        height: 26px;
        padding: 0 6px;
        margin-bottom: 12px;
        flex-shrink: 0;
    }
    
    .slot-item {
        height: 26px;
        font-size: 8px;
    }
    
    .specialita-link {
        font-size: 10px;
        margin-top: auto;
    }
    
    .card-crown img {
        width: 25px;
    }
    
    .card-crown {
        top: -10px;
    }
    
    .vantaggi-grid {
        grid-template-columns: 1fr;
    }
    
    .decor-crown-left,
    .decor-crown-right {
        width: 50px;
    }
    
    .decor-throne {
        width: 120px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .specialita-grid {
        gap: 8px;
        align-items: stretch;
    }
    
    .specialita-card {
        padding: 14px 8px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .specialita-icon {
        height: 40px;
        margin-bottom: 8px;
        flex-shrink: 0;
    }
    
    .specialita-icon img {
        width: 30px;
        height: 30px;
    }
    
    .specialita-card h3 {
        font-size: 10px;
        margin-bottom: 8px;
        min-height: 26px;
        flex-shrink: 0;
    }
    
    .specialita-card p {
        font-size: 9px;
        margin-bottom: 10px;
        min-height: 50px;
        flex-shrink: 0;
    }
    
    .slot-container {
        height: 24px;
        margin-bottom: 10px;
        flex-shrink: 0;
    }
    
    .slot-item {
        height: 24px;
        font-size: 7px;
    }
    
    .specialita-link {
        font-size: 9px;
        margin-top: auto;
    }
}
