/* ====== CSS Variables & Base Setup ====== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --bg-deep: #050505;
    --bg-darker: #020202;
    --bg-glass: rgba(15, 15, 15, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15);
    
    --text-main: #f8f8f8;
    --text-muted: #aaaaaa;
    
    --gold-light: #FBF5B7;
    --gold-main: #D4AF37;
    --gold-dark: #AA771C;
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    
    --ruby-red: #D91023;
    --ruby-rgb: 217, 16, 35;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body, a, button, select, input, textarea {
    cursor: url('data:image/svg+xml;utf8,<svg fill="%230f3cc9" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 2l12 11.2-5.8.5 3.3 7.3-2.2.9-3.2-7.4-4.4 5V2z" stroke="%23ffffff" stroke-width="1"/></svg>') 7 2, auto !important;
}

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

/* ====== Custom Cursor ====== */
.custom-cursor {
    display: none !important; /* Disabilitato per lasciar spazio al cursore nativo a forma di freccia blu */
}

.custom-cursor-glow {
    position: fixed;
    top: -100px;
    left: -100px;
    width: 45px;
    height: 45px;
    border: 1px solid var(--gold-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, top 0.05s ease-out, left 0.05s ease-out, border-color 0.4s, box-shadow 0.4s;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.6);
}

.custom-cursor-glow.hover {
    width: 60px;
    height: 60px;
    border-color: var(--ruby-red);
    box-shadow: 0 0 20px rgba(217, 16, 35, 0.4);
    background-color: rgba(217, 16, 35, 0.05);
}

/* ====== Typography Elevators ====== */
h1, h2, h3, h4, h5, h6, .serif {
    font-family: var(--font-heading);
}

.italic-serif {
    font-style: italic;
    font-weight: 400;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    display: inline-block;
}

.highlight-red {
    color: var(--ruby-red);
    text-shadow: 0 0 20px rgba(var(--ruby-rgb), 0.4);
}

@keyframes fireVibration {
    0% { 
        transform: scale(1) rotate(-1deg); 
        filter: brightness(1) drop-shadow(0 0 15px rgba(255,0,0,0.6)); 
    }
    100% { 
        transform: scale(1.05) rotate(1deg); 
        filter: brightness(1.4) drop-shadow(0 0 30px rgba(255,140,0,0.9)); 
    }
}

@keyframes moltenFire {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.fire-text-anim {
    display: inline-block;
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #D4AF37, #D91023, #FCF6BA, #8B0000, #D4AF37);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moltenFire 5s linear infinite;
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.5));
    line-height: 1;
}

.text-xl { font-size: 3rem !important; }
.text-smaller { font-size: 0.7em; display: block; margin-top: 10px; font-family: var(--font-body); letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* ====== Layout Utilities ====== */
.glass-card-rounded {
    border-radius: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.fire-text-logo {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    letter-spacing: 6px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(135deg, #D4AF37, #D91023, #FCF6BA, #8B0000, #D4AF37);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moltenFire 5s linear infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}
.text-highlight {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 800;
    text-align: center;
}
.form-stats-row {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 30px;
}
.form-stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.privacy-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(205,168,92,0.25);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding { padding: 120px 0; }
.relative { position: relative; }
.z-10 { position: relative; z-index: 10; }
.text-center { text-align: center; }
.mt-50 { margin-top: 50px; }
.mb-20 { margin-bottom: 20px; }

/* ====== Luxury Background & Orbs ====== */
.luxury-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #000;
}

.bg-abstract-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.6; /* Makes it dark and elegant */
}

.bg-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5,5,5,0.7) 0%, rgba(15,15,15,0.4) 100%);
    z-index: 1;
}

/* Floating Diamond kept for aesthetics */

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

/* ====== Header & Ticker ====== */
.header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.header-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.desktop-nav {
    display: flex;
    gap: 30px;
}

.header-cta {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-main);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--gold-main);
}

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

.btn-small {
    padding: 12px 25px;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

/* Ticker Tape */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 15px 0;
    position: fixed; /* Keeps it in foreground when scrolling */
    bottom: 0; /* Pinned to the very bottom */
    z-index: 999;
    border-top: 1px solid rgba(0, 0, 0, 0.1); /* Border on top now */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05); /* Shadow pointing upwards */
}

.ticker {
    display: flex;
    width: max-content;
    animation: ticker 25s linear infinite;
}

.ticker-wrap:hover .ticker {
    animation-play-state: paused;
}

.ticker__item {
    font-family: 'Montserrat', sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 2.5rem;
    padding: 0 40px;
    display: flex;
    align-items: center;
    color: #111;
    -webkit-text-fill-color: #111;
    background: none;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px #00f2fe, -3px -3px 0px #fe0979;
    letter-spacing: 2px;
    transition: transform 0.3s ease;
}

.ticker__item:hover {
    transform: scale(1.05);
}

.ticker__item span {
    margin-left: 40px;
    font-size: 1.8rem;
    color: #111;
    -webkit-text-fill-color: #111;
    filter: none;
    text-shadow: 3px 3px 0px #00f2fe, -3px -3px 0px #fe0979;
}

/* ====== Hero Section ====== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 150px;
    z-index: 10;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero-title span {
    font-size: 2.5rem; /* Dimensione ridotta per le due scritte sottostanti */
    display: inline-block;
    line-height: 1.3;
}

.hero .sub-headline {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Keyframes per Bottoni Vivi (Pulse & Shimmer) */
@keyframes btnPulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes btnShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Luxury Button */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--gold-main);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border-radius: 2px;
    backdrop-filter: blur(10px);
    animation: btnPulseGlow 3s infinite;
}

.btn-luxury-text {
    position: relative;
    z-index: 2;
}

.btn-luxury-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-icon {
    position: relative;
    z-index: 2;
    margin-left: 15px;
    transition: transform 0.3s;
}

.btn-luxury:hover {
    color: #000;
    border-color: transparent;
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px) scale(1.02);
    animation: none;
}

.btn-luxury:hover .btn-luxury-bg {
    left: 0;
}

.btn-luxury:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--gold-gradient);
    background-size: 200% auto;
    border: 2px solid #000;
    color: #000;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.8rem;
    position: relative;
    transition: var(--transition-smooth);
    border-radius: 2px;
    animation: btnPulseGlow 2s infinite, btnShimmer 4s linear infinite;
}

.btn-primary-gold:hover {
    background: #000;
    color: var(--gold-main);
    border-color: var(--gold-main);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    animation: none;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-main);
    margin-top: 5px;
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* ====== Glass Cards System ====== */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 40px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    transform: translateZ(0); 
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Fire Animated Background */
@keyframes fireImagePulse {
    0%, 100% { transform: scale(1); filter: brightness(1) contrast(1.1); }
    50% { transform: scale(1.03); filter: brightness(1.25) contrast(1.2); }
}

.fire-animated-bg {
    background: rgba(18, 18, 18, 0.6); 
    position: relative;
    overflow: hidden;
    z-index: 1; 
}

/* L'immagine fotorealistica base assegnata nel layer inferiore e animata */
.fire-animated-bg::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url('fire_bg.png') center center / cover no-repeat;
    z-index: -2;
    animation: fireImagePulse 5s infinite alternate ease-in-out;
    pointer-events: none;
}

/* Gradient Overlay alleggerito per far splendere il fuoco */
.fire-animated-bg::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18,18,18,0.5); /* Solo velo scuro leggerissimo */
    z-index: -1;
    pointer-events: none;
}

/* ====== Section Titles ====== */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
}

/* ====== Vision & Values ====== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--gold-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 30px;
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

.value-card:hover .icon-ring {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.value-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 300;
}

/* ====== About Us Story ====== */
.about-story {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-glass);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    padding: 80px;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.about-story::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 10rem;
    font-family: var(--font-heading);
    color: var(--gold-main);
    opacity: 0.1;
    line-height: 1;
}

.about-story p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-align: left;
}

.about-story .drop-cap {
    float: left;
    font-size: 5rem;
    line-height: 0.7;
    margin: 15px 15px 0 0;
    font-family: var(--font-heading);
    color: var(--gold-main);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.about-quote-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.about-quote {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.about-signature {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-main);
}

/* ====== Performance Tiers ====== */
.tiers-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.tier-card {
    background: rgba(10,10,10,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.tier-content {
    position: relative;
    z-index: 2;
}

.tier-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #555;
    transition: var(--transition-fast);
}

.tier-card h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 400;
}

.tier-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tier-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: #555;
    box-shadow: 0 -10px 30px #555;
    transition: var(--transition-smooth);
}

.tier-card:hover { transform: translateY(-10px); background: #111; z-index: 10; }
.tier-card:hover .tier-icon { color: #fff; transform: scale(1.1); }

/* Specific Tiers */
.tier-growth:hover .tier-icon { color: #3498db; }
.tier-growth .tier-glow { background: #3498db; box-shadow: 0 -10px 40px rgba(52, 152, 219, 0.3); }

.tier-pro:hover .tier-icon { color: #e67e22; }
.tier-pro .tier-glow { background: #e67e22; box-shadow: 0 -10px 40px rgba(230, 126, 34, 0.3); }

.tier-elite {
    background: linear-gradient(135deg, rgba(30,25,10,0.8), rgba(10,10,10,0.9));
    border-color: rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.tier-elite:hover { transform: scale(1.08) translateY(-5px); }
.tier-elite .tier-icon { color: var(--gold-main); text-shadow: 0 0 20px rgba(212,175,55,0.5); }
.tier-elite .tier-glow { background: var(--gold-main); box-shadow: 0 -20px 50px rgba(212,175,55,0.4); height: 3px; }

.tier-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-main);
    color: #000;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 8px;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.kpi-box {
    display: flex;
    align-items: center;
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    padding: 20px;
    border-radius: 4px;
}

.kpi-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: rgba(255,255,255,0.1);
    margin-right: 20px;
    font-weight: 700;
}

.kpi-detail {
    display: flex;
    flex-direction: column;
}

.kpi-value {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kpi-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ====== Luxury Timeline ====== */
.luxury-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-dark), var(--gold-light), var(--gold-dark));
    opacity: 0.3;
}

.timeline-step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.step-marker {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--bg-deep);
    border: 2px solid var(--gold-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 20px rgba(212,175,55,0.2);
}

.step-marker span {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold-main);
}

.step-content {
    margin-left: 40px;
    flex-grow: 1;
    padding: 40px;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* ====== Ethics Showcase ====== */
.ethics-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.ethics-item {
    display: flex;
    align-items: center;
    padding: 40px;
}

.ethics-icon {
    font-size: 3rem;
    color: var(--gold-main);
    margin-right: 40px;
    width: 80px;
    text-align: center;
}

.red-icon {
    color: var(--ruby-red);
}

.ethics-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 400;
}

.danger-card {
    border-color: rgba(217, 16, 35, 0.3);
    background: rgba(20, 5, 5, 0.6);
}
.danger-card:hover {
    border-color: var(--ruby-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 30px rgba(217, 16, 35, 0.2);
}

/* ====== Footer ====== */
.footer {
    padding: 100px 0 30px;
    background: black;
    border-top: 1px solid var(--glass-border);
}

.footer-cta-box {
    max-width: 800px;
    margin: 0 auto 80px;
    padding: 80px 40px;
    background: linear-gradient(180deg, rgba(20,20,20,0.8), rgba(5,5,5,0.95));
}

.footer-title {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.copyright {
    font-size: 0.8rem;
    color: #444;
    letter-spacing: 2px;
}

/* ====== Animations & Keyframes ====== */
@keyframes shine {
    to { background-position: 200% center; }
}

@keyframes float {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 50px) rotate(10deg); }
}

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

@keyframes shineSweep {
    0%, 10% { transform: translate(-30%, -30%); opacity: 0; }
    40%, 60% { opacity: 1; }
    90%, 100% { transform: translate(30%, 30%); opacity: 0; }
}

@keyframes floatGolden {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { transform: translate(-40px, 40px) scale(1.1); opacity: 0.3; }
}

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

.shimmer-text {
    background: linear-gradient(to right, #fff 20%, var(--gold-main) 40%, var(--gold-main) 60%, #fff 80%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 4s linear infinite;
}

/* Scroll Reveals */
.fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ====== Floating Diamonds ====== */
.floating-diamond {
    position: absolute;
    color: #87cefa;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px #1e90ff);
    opacity: 0;
    animation: drift 15s linear infinite;
}

@keyframes drift {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% { opacity: 0.1; } /* Reduced opacity to push to background */
    90% { opacity: 0.1; }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-diamond {
        display: none !important;
    }
    
    .glass-card:hover::before {
        display: none !important;
    }
}

/* ====== Versus Background ====== */
.versus-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2; /* Above orbs, below content */
    pointer-events: none;
    display: flex;
    flex-direction: column;
}






/* Color overlays */
.pk-half-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.pk-overlay-left {
    background: linear-gradient(
        to right,
        rgba(0, 60, 220, 0.45) 0%,
        rgba(0, 60, 220, 0.1) 70%,
        transparent 100%
    );
    box-shadow: inset -30px 0 60px rgba(0,0,0,0.5);
}

.pk-overlay-right {
    background: linear-gradient(
        to left,
        rgba(220, 0, 30, 0.45) 0%,
        rgba(220, 0, 30, 0.1) 70%,
        transparent 100%
    );
    box-shadow: inset 30px 0 60px rgba(0,0,0,0.5);
}

/* Creator badges (top corners) */
.pk-creator-badge {
    position: absolute;
    top: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    padding: 10px 14px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.pk-badge-left  { left: 16px; }
.pk-badge-right { right: 16px; }

.pk-avatar-ring {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid transparent;
}

.pk-ring-blue { border-color: #00aaff; box-shadow: 0 0 12px #00aaff; }
.pk-ring-red  { border-color: #ff2244; box-shadow: 0 0 12px #ff2244; }

.pk-avatar-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pk-creator-info {
    display: flex;
    flex-direction: column;
}

.pk-creator-info-right {
    text-align: right;
}

.pk-creator-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.pk-creator-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Gift/coin rain animations */
.pk-gifts-left,
.pk-gifts-right {
    position: absolute;
    bottom: 200px;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 8;
    pointer-events: none;
}

.pk-gifts-left  { left: 20px; }
.pk-gifts-right { right: 20px; }

.pk-gift-item {
    font-size: 1.6rem;
    opacity: 0;
    display: block;
    animation: giftRise 2.5s var(--delay, 0s) infinite ease-out;
}

@keyframes giftRise {
    0%   { opacity: 0; transform: translateY(0) scale(0.5); }
    15%  { opacity: 1; }
    80%  { opacity: 0.7; }
    100% { opacity: 0; transform: translateY(-180px) scale(1.3); }
}

/* ====== CENTER STRIP ====== */
.pk-center-strip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    pointer-events: none;
    gap: 18px;
    width: 320px;
}

.pk-label-badge {
    position: absolute;
    top: 100px;
    background: linear-gradient(135deg, #ff0050, #ffcc00, #0066ff);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 4px;
    padding: 6px 22px;
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(255,200,0,0.7);
    animation: pkLabelPulse 1.5s infinite alternate;
}

@keyframes pkLabelPulse {
    0%   { box-shadow: 0 0 15px rgba(255,200,0,0.6); transform: scale(1); }
    100% { box-shadow: 0 0 35px rgba(255,0,80,0.8);  transform: scale(1.06); }
}

.pk-countdown-timer {
    position: absolute;
    top: 138px;
    font-family: 'Montserrat', monospace;
    font-weight: 900;
    font-size: 2rem;
    color: #ff3333;
    text-shadow: 0 0 20px rgba(255,50,50,0.9);
    background: rgba(0,0,0,0.75);
    border: 2px solid #ff3333;
    border-radius: 14px;
    padding: 4px 20px;
    letter-spacing: 4px;
    animation: timerPulse 1s infinite alternate;
}

@keyframes timerPulse {
    0%   { transform: scale(1);    box-shadow: 0 0 10px rgba(255,51,51,0.5); }
    100% { transform: scale(1.05); box-shadow: 0 0 28px rgba(255,51,51,1);   }
}

.pk-divider-line {
    position: absolute;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255,255,255,0.15) 15%,
        rgba(255,255,255,0.5) 40%,
        rgba(255,220,0,0.8) 50%,
        rgba(255,255,255,0.5) 60%,
        rgba(255,255,255,0.15) 85%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(255,220,0,0.4);
    z-index: -1;
}

/* Brand center */
.pk-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    background: rgba(0,0,0,0.72);
    border: 2px solid rgba(212,175,55,0.6);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(212,175,55,0.3), 0 0 80px rgba(0,0,0,0.8);
    backdrop-filter: blur(14px);
}

.pk-brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.6));
}

.pk-brand-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
}

/* PK Progress Bar at center bottom */
.pk-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 300px;
    padding: 10px 14px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.pk-progress-bar {
    flex: 1;
    height: 28px;
    background: #ff2244;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
}

.pk-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: #0066ff;
    border-radius: 20px 0 0 20px;
    border-right: 3px solid #fff;
    box-shadow: inset -6px 0 12px rgba(255,255,255,0.4);
    animation: pkBarWave 5s infinite alternate ease-in-out;
    transition: width 0.8s ease;
}

@keyframes pkBarWave {
    0%   { width: 50%; }
    33%  { width: 65%; }
    66%  { width: 55%; }
    100% { width: 60%; }
}

.pk-progress-divider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: rgba(255,255,255,0.6);
    transform: translateX(-50%);
}

.pk-progress-score {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.pk-score-blue { color: #00ccff; text-shadow: 0 0 10px #0066ff; }
.pk-score-red  { color: #ff4444; text-shadow: 0 0 10px #ff0000; }

/* VS bolt */
.pk-vs-bolt {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    background: linear-gradient(135deg, #ff0050 0%, #ffcc00 50%, #0066ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(255,200,0,0.7));
    animation: vsZap 2s infinite alternate ease-in-out;
    line-height: 1;
}

@keyframes vsZap {
    0%   { filter: drop-shadow(0 0 20px rgba(255,0,80,0.9)); transform: scale(1) rotate(-3deg); }
    100% { filter: drop-shadow(0 0 40px rgba(0,102,255,0.9)); transform: scale(1.12) rotate(3deg); }
}

/* Bottom CTA */
.pk-cta-bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30;
    pointer-events: auto;
}

.pk-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    background-size: 200% auto;
    color: #000;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 3px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(212,175,55,0.7), 0 10px 30px rgba(0,0,0,0.5);
    animation: btnPulseGlow 2s infinite, btnShimmer 3s linear infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(0,0,0,0.3);
}

.pk-cta-btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 50px rgba(212,175,55,1), 0 15px 40px rgba(0,0,0,0.6);
    animation: none;
}

.split-pane {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.pane-left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 50, 200, 0.4), transparent);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.pane-right {
    right: 0;
    background: linear-gradient(to left, rgba(200, 0, 0, 0.4), transparent);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

body:hover .split-pane {
    opacity: 0.3;
}

.vs-hud {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 5%;
    width: 100%;
    margin-top: 130px; /* Below the header and ticker */
    opacity: 0.8; /* High baseline visibility */
    transition: opacity 0.3s ease;
}

/* Make it fully visible on hover for effect */
body:hover .vs-hud {
    opacity: 1; /* Make it pop out maximum on hover */
}

.player-hud {
    width: 35%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.p1-hud { align-items: flex-start; }
.p2-hud { align-items: flex-end; }

.pk-meter-container {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    gap: 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

body:hover .pk-meter-container {
    opacity: 1;
}

.pk-bar {
    flex-grow: 1;
    height: 35px;
    background: #ff0000;
    border: 3px solid var(--gold-main);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}

.pk-bar-fill {
    width: 65%;
    height: 100%;
    background: #0066ff;
    border-right: 4px solid #fff;
    box-shadow: inset -5px 0 10px rgba(255,255,255,0.5);
    animation: pk-battle 4s infinite alternate ease-in-out;
}

@keyframes pk-battle {
    0% { width: 50%; }
    50% { width: 65%; }
    100% { width: 55%; }
}

.pk-score {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    cursor: pointer;
    user-select: none;
    transition: transform 0.1s;
}
.pk-score:active {
    transform: scale(0.9);
}

/* ====== Floating Hearts (TikTok style) ====== */
.floating-heart {
    position: fixed;
    pointer-events: none;
    color: #ff2a5f;
    font-size: 2.5rem;
    z-index: 9999;
    animation: floatHeart 1s ease-out forwards;
    text-shadow: 0 0 10px rgba(255, 42, 95, 0.6);
}

@keyframes floatHeart {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, calc(-50% - 60px)) scale(1.2) rotate(-15deg); }
    100% { opacity: 0; transform: translate(-50%, calc(-50% - 120px)) scale(1) rotate(15deg); }
}

.p1-score { color: #00ccff; text-shadow: 0 0 15px #0066ff; }
.p2-score { color: #ff3333; text-shadow: 0 0 15px #ff0000; }

.player-name {
    font-family: var(--font-heading);
    font-size: 3rem; /* Increased size slightly */
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 0 #000, -2px -2px 0 var(--gold-main), 0 0 30px var(--gold-main); /* Stronger glow */
    margin-top: 10px;
    letter-spacing: 5px;
    transform: skewX(-15deg);
}

.p2-name {
    transform: skewX(15deg);
    text-shadow: 2px 2px 0 #000, -2px -2px 0 var(--ruby-red), 0 0 30px var(--ruby-red); /* Stronger glow */
}

.phone-container {
    width: 200px;
    height: 350px;
    border-radius: 26px;
    margin-top: 25px;
    border: 6px solid #1a1a1a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px var(--gold-main);
    animation: phoneFloat 5s ease-in-out infinite;
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.phone-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #1a1a1a;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.spinning-avatar-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-15px) rotate(-1deg); }
}

.p2-hud .phone-container {
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 20px var(--ruby-red);
    animation-delay: -2.5s;
}

.vs-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 25; /* Sopra le due metà e le barre */
    pointer-events: none;
}

/* ====== Match Carousel ====== */
.match-carousel {
    width: 400px;
    height: 200px;
    overflow: hidden;
    margin-top: 20px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    border: 2px solid var(--gold-main);
    background: rgba(0,0,0,0.5);
    pointer-events: auto; /* Permette interazione se serve */
}

/* Gradienti laterali per dissolvenza morbida */
.match-carousel::before, .match-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.match-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8), transparent);
}
.match-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.8), transparent);
}

.match-carousel-track {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
    padding: 0 30px;
    width: max-content;
    animation: scrollCarousel 12s linear infinite;
}

.match-carousel-track img {
    height: 160px;
    width: auto;
    border-radius: 4px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
}

@keyframes scrollCarousel {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.pk-timer {
    position: absolute;
    top: 145px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: rgba(0,0,0,0.8);
    color: #ff3333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 5px 20px;
    border-radius: 20px;
    border: 2px solid #ff3333;
    box-shadow: 0 0 15px rgba(255,51,51,0.5);
    animation: pk-pulse 1s infinite alternate;
}

@keyframes pk-pulse {
    0% { transform: translateX(-50%) scale(1); opacity: 0.8; box-shadow: 0 0 10px rgba(255,51,51,0.5); }
    100% { transform: translateX(-50%) scale(1.1); opacity: 1; box-shadow: 0 0 25px rgba(255,51,51,1); }
}

.vs-logo-text {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 3px #fff;
    background: linear-gradient(135deg, #ff0000 0%, #ffcc00 50%, #0066ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.6));
    animation: vs-shimmer 3s infinite alternate;
}

@keyframes vs-shimmer {
    0% { filter: drop-shadow(0 0 20px rgba(255,0,0,0.8)); transform: scale(1) rotate(-5deg); }
    100% { filter: drop-shadow(0 0 40px rgba(0,102,255,0.8)); transform: scale(1.1) rotate(5deg); }
}

@keyframes health-drain-p1 {
    0% { width: 100%; }
    50% { width: 60%; }
    100% { width: 90%; }
}

@keyframes health-drain-p2 {
    0% { width: 100%; }
    50% { width: 80%; }
    100% { width: 40%; }
}

/* ====== Application Form ====== */
.apply-section {
    position: relative;
    z-index: 10;
}

.smoky-bg {
    background: rgba(15, 15, 15, 0.85); /* Sfondo nero fumo */
    border: 1px solid var(--gold-main);
    box-shadow: 0 0 30px rgba(0,0,0,0.9);
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 4px;
}

.luxury-form {
    font-family: var(--font-body);
    color: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group select,
.form-group textarea,
.form-stat-item input[type="number"] {
    background: transparent;
    border: 1px solid var(--gold-dark); /* bordi dorati sottili */
    padding: 15px;
    color: #fff;
    font-family: var(--font-body);
    border-radius: 2px;
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-stat-item input[type="number"]:focus {
    outline: none;
    border-color: var(--gold-main);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-group select option {
    background: #111;
    color: #fff;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 1rem;
    color: var(--gold-light);
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.btn-fire-submit {
    background: #D4AF37; /* Colore Oro Vivido */
    color: #000;
    border: none;
    padding: 20px 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.btn-fire-submit:hover {
    box-shadow: 0 0 30px #FF0000; /* Outer Glow Rosso Fuoco */
    transform: scale(1.05); /* Testo leggermente più grande (tasto si ingrandisce) */
}

.success-message {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-main);
    color: var(--gold-light);
    text-align: center;
    line-height: 1.8;
}

/* ====== HAMBURGER MENU (mobile nav) ====== */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.1); }
.hamburger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.2s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer nav */
.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.97);
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, visibility 0.35s, transform 0.35s cubic-bezier(0.16,1,0.3,1);
    pointer-events: none;
}
.mobile-nav-drawer.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.mobile-nav-drawer a {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    transition: color 0.2s;
}
.mobile-nav-drawer a:hover { color: var(--gold-main); }
.mobile-nav-drawer .drawer-cta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    max-width: 320px;
}
.mobile-nav-drawer .drawer-cta a {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-align: center;
    padding: 14px 20px;
    width: 100%;
}
.drawer-close-hint {
    position: absolute;
    bottom: 40px;
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ====== Responsive — Desktop XL (≤1280px) ====== */
@media (max-width: 1280px) {
    .pk-center-strip { width: 260px; }
    .pk-brand-text { font-size: 1.5rem; }
    .vs-logo-text { font-size: 6rem; }
    .player-name { font-size: 2.4rem; }
}

/* ====== Responsive — Tablet (≤1024px) ====== */
@media (max-width: 1024px) {
    .tiers-container { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3.5rem; }
    .footer-title { font-size: 2rem; }
    .section-title { font-size: 2.8rem; }

    /* PK / VS HUD tablet */
    .player-name { font-size: 2rem; letter-spacing: 3px; }
    .phone-container { width: 150px; height: 260px; border-radius: 18px; border-width: 5px; }
    .phone-container::after { width: 60px; height: 14px; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; }
    .pk-score { font-size: 1.4rem; }
    .pk-bar { height: 28px; }
    .pk-meter-container { 
        width: 70%; 
        top: 90px; 
    }
    .vs-hud { margin-top: 110px; }
    .pk-timer { font-size: 1.2rem; top: 130px; }
    .pk-center-strip { width: 220px; gap: 12px; }
    .pk-brand-text { font-size: 1.3rem; letter-spacing: 3px; }
    .pk-vs-bolt { font-size: 3.5rem; }
    .pk-cta-btn { font-size: 0.85rem; padding: 13px 28px; letter-spacing: 2px; }

    /* Header */
    .desktop-nav { gap: 18px; }
    .nav-link { font-size: 0.78rem; letter-spacing: 1.5px; }
    .header-cta { gap: 0.6rem; }
    .btn-primary-gold { padding: 10px 16px; font-size: 0.72rem; letter-spacing: 1.5px; }

    /* Ticker */
    .ticker__item { font-size: 2rem; padding: 0 28px; }
}

/* ====== Responsive — Mobile (≤768px) ====== */
@media (max-width: 768px) {

    .fire-text-logo {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    .text-highlight {
        font-size: 1.2rem;
    }
    .form-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .privacy-box {
        padding: 1rem;
        align-items: flex-start;
        gap: 0.8rem;
    }

    /* --- Header --- */
    .header-content { height: 70px; padding: 0; }
    .desktop-nav { display: none; }
    .header-cta { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-nav-drawer { display: flex; }

    /* --- Ticker --- */
    .ticker__item { font-size: 1.5rem; padding: 0 20px; }
    .ticker__item span { font-size: 1.1rem; margin-left: 20px; }

    /* --- VS / PK Background HUD --- */
    .vs-hud {
        padding: 15px 3%;
        margin-top: 80px;
        gap: 0;
    }
    .player-hud { width: 44%; }
    .player-name {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    .phone-container {
        width: 125px;
        height: 220px;
        margin-top: 15px;
        border-width: 4px;
        border-radius: 16px;
    }
    .phone-container::after { width: 50px; height: 12px; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }
    .pk-meter-container {
        top: 73px;
        width: 80%;
        gap: 8px;
    }
    .pk-score { font-size: 1rem; }
    .pk-bar { height: 22px; border-width: 2px; }
    .pk-timer {
        top: 103px;
        font-size: 1rem;
        padding: 3px 12px;
        border-width: 1.5px;
    }
    .vs-center {
        top: 58%;
    }
    .vs-center .highlight-red {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }
    .pk-center-strip { width: 90%; max-width: 320px; gap: 10px; }
    .pk-label-badge { font-size: 0.7rem; letter-spacing: 2px; padding: 4px 14px; top: 80px; }
    .pk-countdown-timer { font-size: 1.3rem; top: 110px; }
    .pk-brand-text { font-size: 1.1rem; letter-spacing: 2px; }
    .pk-brand-logo { height: 36px; }
    .pk-vs-bolt { font-size: 2.8rem; }
    .pk-progress-wrap { width: 90%; max-width: 280px; padding: 8px 10px; }
    .pk-progress-bar { height: 22px; }
    .pk-progress-score { font-size: 0.85rem; }
    .pk-cta-bottom { bottom: 80px; }
    .pk-cta-btn { font-size: 0.8rem; padding: 12px 22px; letter-spacing: 1.5px; border-radius: 40px; }
    .pk-creator-badge { top: 80px; padding: 7px 10px; gap: 8px; }
    .pk-creator-name { font-size: 0.9rem; letter-spacing: 1px; }
    .pk-creator-sub { font-size: 0.62rem; }
    .pk-avatar-ring { width: 38px; height: 38px; border-width: 2px; }
    .pk-gifts-left, .pk-gifts-right { bottom: 130px; }
    .pk-gift-item { font-size: 1.2rem; }

    /* --- Section padding --- */
    .section-padding { padding: 80px 0; }
    .section-title { font-size: 2.2rem; margin-bottom: 50px; }

    /* --- Cards & content --- */
    .glass-card { padding: 25px 20px; }
    .glass-card:hover { transform: none; } /* Disable heavy hover on touch */

    /* --- Story / About --- */
    .about-story {
        padding: 30px 20px;
        margin: 0;
        border-radius: 0 0 4px 4px;
    }
    .about-story p { font-size: 0.95rem; line-height: 1.75; margin-bottom: 20px; }
    .about-story .drop-cap { font-size: 3rem; margin: 10px 10px 0 0; }
    .about-quote { font-size: 1.9rem; }
    .about-quote-container { margin-top: 30px; padding-top: 25px; }

    /* --- Ethics grid --- */
    .ethics-showcase { gap: 1.5rem; }
    .ethics-item { flex-direction: column; text-align: center; padding: 25px 20px; }
    .ethics-icon { margin-right: 0; margin-bottom: 16px; width: auto; font-size: 2.2rem; }

    /* --- Courses grid --- */
    .courses-grid { gap: 1.5rem !important; }

    /* --- Form --- */
    .smoky-bg { padding: 28px 18px; border-radius: 12px; }
    .form-grid { grid-template-columns: 1fr; gap: 20px; }
    .full-width { grid-column: 1 / -1; }
    .radio-group { flex-direction: column; gap: 12px; }

    /* --- Footer --- */
    .footer { padding: 60px 0 100px; }
    .footer-cta-box { padding: 45px 25px; margin-bottom: 50px; }
    .footer-title { font-size: 1.7rem; line-height: 1.4; }
    .footer-subtitle { font-size: 1rem; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .btn-luxury { padding: 16px 34px; font-size: 0.8rem; }

    /* --- Hero metrics --- */
    .hero-metrics { flex-direction: column; gap: 20px; margin-top: 50px; }
    .metric-divider { width: 40px; height: 1px; }
    .metric-number { font-size: 2rem; }
}

/* ====== Responsive — Small Mobile (≤480px) ====== */
@media (max-width: 480px) {

    .fire-text-logo {
        font-size: 1.8rem;
    }

    /* VS HUD shrink further */
    .player-name { font-size: 0.95rem; letter-spacing: 1px; }
    .phone-container { width: 105px; height: 185px; border-radius: 14px; border-width: 3px; }
    .phone-container::after { width: 45px; height: 10px; }
    .pk-score { font-size: 0.85rem; }
    .pk-bar { height: 18px; }
    .pk-timer { font-size: 0.85rem; top: 98px; }
    .vs-center .highlight-red { font-size: 1.5rem !important; }

    /* Sections */
    .section-title { font-size: 1.9rem; }
    .section-padding { padding: 60px 0; }
    .container { padding: 0 4%; }

    /* Ticker */
    .ticker__item { font-size: 1.2rem; padding: 0 14px; }

    /* Form */
    .btn-fire-submit { padding: 16px 30px; font-size: 0.85rem; width: 100%; }

    /* Footer */
    .footer-title { font-size: 1.4rem; }
    .security-badge { flex-direction: column; text-align: center; }
}
