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

:root {
    --primary: #ff8c42;
    --secondary: #ffa726;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gold: #ffd700;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

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

/* INTRO */
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.intro-content {
    text-align: center;
}

#intro h1 {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

#intro h2 {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0;
    animation: fadeInUp 1s forwards 1s;
}

.intro-line {
    width: 0;
    height: 2px;
    background: var(--primary);
    margin: 30px auto;
    animation: expandWidth 1s forwards 1.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        transform: translateY(30px);
    }
}

@keyframes expandWidth {
    to { width: 300px; }
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s;
}

header.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-sub {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

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

nav a:hover::after {
    width: 100%;
}

/* HERO */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--gold);
    color: var(--gold);
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 30px;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 50px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/* SLIDER */
.slider-section {
    height: 100vh;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide1 { background: linear-gradient(135deg, #ff6b35, #d4145a); }
.slide2 { background: linear-gradient(135deg, #f7931e, #ff6b35); }
.slide3 { background: linear-gradient(135deg, #d4af37, #f7931e); }

.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.slide-number {
    font-size: 12rem;
    font-weight: 900;
    color: rgba(255,255,255,0.15);
    display: block;
    margin-bottom: -30px;
    text-shadow: 0 0 40px rgba(255,255,255,0.2);
    letter-spacing: -10px;
}

.slide-content h2 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 10px 40px rgba(0,0,0,0.8);
    letter-spacing: -2px;
}

.slide-content p {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.95);
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.6);
    text-transform: uppercase;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--light);
    background: rgba(255,255,255,0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* SECTIONS */
section {
    padding: 120px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
}

/* ABOUT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-text .lead {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.about-text p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    height: 600px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge {
    text-align: center;
}

.badge-year {
    font-size: 6rem;
    font-weight: 900;
    display: block;
}

.badge-text {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
}

/* STATS */
.stats {
    background: rgba(255,255,255,0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(255,107,53,0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.stat-item h3 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 50px 35px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,107,53,0.2);
    border-radius: 20px;
    position: relative;
    transition: all 0.5s;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,107,53,0.1);
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: rgba(255,107,53,0.1);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary);
    transition: all 0.5s;
}

.service-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    color: rgba(255,255,255,0.7);
    display: flex;
    gap: 10px;
}

.service-features i {
    color: var(--primary);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* EVENTS */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.event-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
}

.event-card.premium {
    border: 2px solid var(--primary);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    background: var(--primary);
    color: var(--light);
    font-size: 0.75rem;
    border-radius: 20px;
}

.event-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: rgba(255,107,53,0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.event-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.event-card p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-price {
    padding: 10px 20px;
    background: rgba(255,107,53,0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-weight: 700;
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

/* GALLERY */
.gallery-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-box {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-box.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-box.tall {
    grid-row: span 2;
}

.gallery-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,53,0.3), rgba(247,147,30,0.3));
    padding: 15px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
    margin-bottom: 15px;
}

/* VIDEO */
.video-section {
    text-align: center;
}

.video-frame {
    max-width: 900px;
    aspect-ratio: 16/9;
    margin: 0 auto 40px;
    position: relative;
    background: #000;
    border-radius: 15px;
    border: 3px solid var(--primary);
}

.video-player {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: 20px;
}

.video-section h2 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GLOBE */
#globe-container {
    width: 100%;
    height: 600px;
    background: #000;
    border-radius: 20px;
}

/* CONTACT */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form input,
.contact-form textarea {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--light);
    font-size: 1rem;
}

.contact-form textarea {
    min-height: 150px;
}

.contact-form button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

/* FOOTER */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* RESPONSIVE */
@media (max-width: 968px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Button Styling */
.event-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.event-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.event-whatsapp i {
    font-size: 1.2rem;
}

/* Improved Globe Section */
#world {
    background: #000;
    position: relative;
    overflow: hidden;
}

#world::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,140,66,0.1) 0%, transparent 70%);
    pointer-events: none;
}

#globe-container {
    width: 100%;
    height: 700px;
    background: radial-gradient(circle at center, #0a0a1a 0%, #000000 100%);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.8),
        inset 0 0 100px rgba(0,0,0,0.5);
    position: relative;
}

.world-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.world-stat {
    text-align: center;
    padding: 30px 40px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,140,66,0.3);
    border-radius: 20px;
    transition: all 0.4s;
}

.world-stat:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255,140,66,0.3);
}

.world-stat i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.world-stat span {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

/* ==================== MOBILE MENU ==================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--light);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: right 0.4s;
        z-index: 1000;
    }
    
    nav.active {
        right: 0;
    }
    
    nav a {
        font-size: 1.5rem;
    }
}

/* ==================== COUNTDOWN SECTION ==================== */
#countdown-section {
    position: relative;
    background: var(--dark);
    overflow: hidden;
}

#countdown-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.countdown-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.countdown-box {
    padding: 40px 50px;
    background: rgba(255,255,255,0.05);
    border: 3px solid var(--primary);
    border-radius: 20px;
    text-align: center;
    min-width: 150px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.countdown-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,140,66,0.2) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255,140,66,0.4);
}

.countdown-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ==================== TESTIMONIALS ==================== */
#testimonials {
    background: var(--dark);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    padding: 60px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.3);
    border-radius: 30px;
    text-align: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s;
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.stars {
    margin-bottom: 30px;
}

.stars i {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0 5px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.testimonial-author span {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary);
    color: var(--light);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    width: 40px;
    border-radius: 6px;
}

/* ==================== PROCESS TIMELINE ==================== */
#process {
    background: var(--dark);
}

.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s;
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 50%;
    text-align: center;
}

.step-content {
    width: 50%;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.3);
    border-radius: 20px;
    transition: all 0.4s;
}

.step-content:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255,140,66,0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--light);
}

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

.step-content p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    text-align: center;
}

/* ==================== CERTIFICATIONS ==================== */
#certifications {
    background: var(--dark);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cert-card {
    padding: 50px 30px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255,140,66,0.3);
}

.cert-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--light);
}

.cert-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.cert-card p {
    color: rgba(255,255,255,0.7);
}

/* ==================== LOCATIONS WITH MAPS ==================== */
#locations {
    background: var(--dark);
}

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

.location-box {
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 20px;
    transition: all 0.4s;
}

.location-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255,140,66,0.3);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.location-header i {
    font-size: 3rem;
    color: var(--primary);
}

.location-header h3 {
    font-size: 2rem;
}

.location-info {
    margin-bottom: 30px;
}

.location-info p {
    padding: 12px 0;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.location-info i {
    color: var(--primary);
    width: 20px;
}

.location-map {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s;
}

.location-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,140,66,0.4);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--light);
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--light);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.lightbox-prev {
    left: 50px;
}

.lightbox-next {
    right: 50px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}

.lightbox-placeholder {
    width: 800px;
    height: 600px;
    background: linear-gradient(135deg, rgba(255,140,66,0.2), rgba(255,167,38,0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.lightbox-placeholder i {
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.lightbox-title {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.8);
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,140,66,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s;
    cursor: pointer;
}

.gallery-box:hover .gallery-hover {
    opacity: 1;
}

.gallery-hover i {
    font-size: 3rem;
    color: var(--light);
    margin-bottom: 15px;
}

.gallery-hover p {
    color: var(--light);
    font-size: 1.1rem;
}

/* ==================== VIDEO MODAL ==================== */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 3rem;
    color: var(--light);
    cursor: pointer;
    z-index: 10001;
}

.video-modal-content {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
}

#play-video-btn {
    cursor: pointer;
}

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    width: 100%;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    padding: 25px 40px;
    z-index: 9999;
    transition: bottom 0.5s;
    border-top: 3px solid var(--primary);
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-content i {
    font-size: 3rem;
    color: var(--primary);
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
}

.cookie-btn.decline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cookie-btn:hover {
    transform: translateY(-3px);
}

/* ==================== CURSOR EFFECTS ==================== */
.cursor-sparkle {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    animation: sparkle-fade 1s forwards;
}

@keyframes sparkle-fade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

/* ==================== MINI-GAME FUOCHI ==================== */
#mini-game {
    background: linear-gradient(180deg, #000 0%, #0a0a1a 50%, #000 100%);
    position: relative;
    overflow: hidden;
}

#mini-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,140,66,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,167,38,0.1) 0%, transparent 50%);
    animation: gameGlow 10s ease-in-out infinite;
}

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

.game-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

#game-canvas {
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at center, #0a0a1a 0%, #000000 100%);
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: 
        0 0 40px rgba(255,140,66,0.5),
        inset 0 0 60px rgba(0,0,0,0.8);
    cursor: crosshair;
    display: block;
}

.game-ui {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.game-stats {
    display: flex;
    gap: 20px;
    flex: 1;
}

.stat-box {
    flex: 1;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.3);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,140,66,0.3);
}

.stat-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.stat-box span {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-box p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.game-reset {
    padding: 20px 40px;
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: var(--light);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-reset:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,68,68,0.4);
}

.game-instructions {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.game-instructions p {
    padding: 15px 25px;
    background: rgba(255,140,66,0.1);
    border: 1px solid rgba(255,140,66,0.3);
    border-radius: 25px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.game-instructions i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Easter Egg Modal */
.easter-egg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.easter-egg-modal.active {
    display: flex;
    animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.easter-egg-content {
    background: linear-gradient(135deg, rgba(255,140,66,0.2), rgba(255,167,38,0.2));
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 3px solid var(--primary);
    text-align: center;
    max-width: 600px;
    box-shadow: 0 30px 80px rgba(255,140,66,0.5);
    animation: eggBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes eggBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.egg-animation {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: eggPulse 1.5s ease-in-out infinite;
}

@keyframes eggPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 40px rgba(255,140,66,0.5); }
    50% { transform: scale(1.1); box-shadow: 0 0 60px rgba(255,140,66,0.8); }
}

.egg-animation i {
    font-size: 4rem;
    color: var(--light);
}

.easter-egg-content h3 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.egg-reward {
    margin: 40px 0;
}

.reward-box {
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border: 2px solid var(--gold);
    border-radius: 20px;
}

.reward-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.reward-box h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.promo-code {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px 0;
    padding: 15px;
    border: 2px dashed var(--primary);
    border-radius: 10px;
    letter-spacing: 0.1em;
}

.reward-box span {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

.egg-close,
.egg-share {
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin: 10px;
}

.egg-close {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
}

.egg-share {
    background: #25D366;
    color: var(--light);
}

.egg-close:hover,
.egg-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,140,66,0.4);
}

/* ==================== COLOR PICKER ==================== */
#color-picker {
    background: var(--dark);
    position: relative;
}

.picker-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.picker-controls {
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 20px;
    position: sticky;
    top: 120px;
}

.picker-controls h3,
.picker-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.picker-controls h3 i,
.picker-preview h3 i {
    color: var(--primary);
    font-size: 2rem;
}

.color-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.color-slot {
    position: relative;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.color-slot:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,140,66,0.2);
}

.color-input {
    width: 100%;
    height: 80px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.color-input:hover {
    transform: scale(1.05);
}

.color-slot label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.9);
}

.color-hex {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    padding: 8px;
    background: rgba(255,140,66,0.1);
    border-radius: 5px;
}

.preset-palettes {
    margin: 40px 0;
}

.preset-palettes h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
}

.presets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.preset-btn {
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preset-btn:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,140,66,0.3);
}

.preset-btn span {
    width: 100%;
    height: 20px;
    border-radius: 4px;
    display: inline-block;
}

.preset-btn p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-weight: 600;
}

.picker-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.picker-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.picker-btn.random {
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    color: var(--light);
}

.picker-btn.share {
    background: #25D366;
    color: var(--light);
}

.picker-btn.save {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
}

.picker-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,140,66,0.4);
}

.picker-preview {
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 20px;
}

#preview-canvas {
    width: 100%;
    height: 500px;
    background: radial-gradient(circle at center, #0a0a1a 0%, #000000 100%);
    border-radius: 15px;
    border: 2px solid var(--primary);
    cursor: pointer;
    display: block;
    box-shadow: 
        0 0 40px rgba(255,140,66,0.3),
        inset 0 0 60px rgba(0,0,0,0.8);
}

.preview-controls {
    margin-top: 25px;
    text-align: center;
}

.preview-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--light);
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.preview-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255,140,66,0.5);
}

.preview-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.preview-info i {
    color: var(--primary);
}

.saved-palettes {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 20px;
}

.saved-palettes h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.saved-palettes h3 i {
    color: #ff1493;
    animation: heartBeat 1.5s ease-in-out infinite;
}

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

.saved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.saved-palette-item {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,140,66,0.2);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.saved-palette-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,140,66,0.3);
}

.saved-colors {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.saved-colors span {
    flex: 1;
    height: 40px;
    border-radius: 5px;
}

.saved-palette-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.palette-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.palette-actions button {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
}

.palette-load {
    background: var(--primary);
    color: var(--light);
}

.palette-delete {
    background: #ff4444;
    color: var(--light);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .picker-wrapper {
        grid-template-columns: 1fr;
    }
    
    .picker-controls {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    #game-canvas,
    #preview-canvas {
        height: 400px;
    }
    
    .game-ui {
        flex-direction: column;
    }
    
    .game-stats {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .stat-box {
        min-width: 45%;
    }
    
    .color-slots,
    .presets-grid {
        grid-template-columns: 1fr;
    }
    
    .easter-egg-content {
        padding: 30px;
        max-width: 90%;
    }
    
    .promo-code {
        font-size: 1.8rem;
    }
}
/* ==================== PRELOADER PREMIUM ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s, visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.logo-loader {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 40px;
}

.fire-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spinLoader 2s linear infinite;
}

.fire-circle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--gold);
    animation: spinLoader 1.5s linear infinite reverse;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

.logo-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 900;
    display: flex;
    gap: 10px;
}

.logo-i,
.logo-f {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoFloat 2s ease-in-out infinite;
}

.logo-f {
    animation-delay: 0.3s;
}

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

.loader-bar {
    width: 400px;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255,140,66,0.3);
}

.loader-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--gold));
    background-size: 200% 100%;
    border-radius: 10px;
    width: 0%;
    animation: progressShine 2s linear infinite;
    transition: width 0.3s;
}

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

.loader-text {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.loader-sparkles {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.loader-sparkles span {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: sparkle 1.5s ease-in-out infinite;
}

.loader-sparkles span:nth-child(2) { animation-delay: 0.2s; }
.loader-sparkles span:nth-child(3) { animation-delay: 0.4s; }
.loader-sparkles span:nth-child(4) { animation-delay: 0.6s; }
.loader-sparkles span:nth-child(5) { animation-delay: 0.8s; }

@keyframes sparkle {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 20px var(--primary);
    }
}

/* ==================== SLIDER WOW EFFECTS ==================== */
.slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.swiper-slide {
    position: relative;
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.slide1 { 
    background: linear-gradient(135deg, #ff6b35 0%, #d4145a 50%, #ff6b35 100%);
}

.slide2 { 
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 50%, #f7931e 100%);
}

.slide3 { 
    background: linear-gradient(135deg, #d4af37 0%, #f7931e 50%, #d4af37 100%);
}

.slide-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: bgFloat 8s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 0 40px;
}

.slide-badge {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    animation: badgePulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.1);
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255,255,255,0);
    }
}

.slide-title-main {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.word {
    display: block;
    color: var(--light);
    text-shadow: 
        0 5px 15px rgba(0,0,0,0.5),
        0 0 30px rgba(255,255,255,0.3);
    letter-spacing: 0.02em;
    animation: wordSlideIn 1s ease-out backwards;
}

.word:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes wordSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.word.highlight {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: 
        wordSlideIn 1s ease-out 0.3s backwards,
        shimmer 3s linear infinite;
    text-shadow: none;
    position: relative;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.word.highlight::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 
        0 0 20px rgba(255,215,0,0.8),
        0 0 40px rgba(255,215,0,0.6),
        0 0 60px rgba(255,215,0,0.4);
}

.slide-line {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--light), transparent);
    margin: 0 auto 35px;
    animation: lineExpand 1s ease-out 0.6s backwards;
}

@keyframes lineExpand {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 150px;
        opacity: 1;
    }
}

.slide-description {
    font-size: 1.6rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95);
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.slide-features span {
    padding: 12px 30px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.slide-features span:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-features i {
    font-size: 1.3rem;
}

/* Swiper controls enhanced */
.swiper-button-next,
.swiper-button-prev {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 22px;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.9);
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    width: 50px;
    border-radius: 7px;
    background: var(--light);
    box-shadow: 0 0 20px rgba(255,255,255,0.8);
}

/* Responsive slider */
@media (max-width: 1200px) {
    .slide-title-main {
        font-size: 4.5rem;
    }
}

@media (max-width: 768px) {
    .slide-title-main {
        font-size: 3rem;
    }
    
    .slide-badge {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .slide-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .slide-features span {
        width: 100%;
        justify-content: center;
    }
}
/* ==================== ELEGANT PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 1s ease, visibility 1s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,140,66,0.03) 0%, transparent 70%);
}

.preloader-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 60px;
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,140,66,0.2);
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 220px;
    height: 220px;
    border-color: rgba(255,167,38,0.3);
    animation: rotate 15s linear infinite reverse;
}

.ring-3 {
    width: 160px;
    height: 160px;
    border-color: rgba(255,215,0,0.4);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo-center h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.3em;
    background: linear-gradient(135deg, #ff8c42, #ffa726, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.logo-center span {
    display: block;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 15px;
}

.logo-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
}

.preloader-progress-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preloader-progress {
    position: relative;
    width: 300px;
    height: 2px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: visible;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff8c42, #ffa726, #ffd700);
    border-radius: 10px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(255,140,66,0.5);
}

.progress-glow {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 8px;
    width: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 20px #ffd700;
    animation: progressGlow 2s ease-in-out infinite;
}

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

.progress-percent {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    min-width: 50px;
}

/* ==================== HERO SPECTACULAR ==================== */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-title-spectacular {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    overflow: hidden;
}

.line-1 {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: titleShine 4s linear infinite;
    letter-spacing: 0.05em;
    text-shadow: 0 0 80px rgba(255,215,0,0.3);
}

.line-2 {
    background: linear-gradient(135deg, #ff8c42 0%, #ffa726 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: titleShine 4s linear infinite 0.5s;
    letter-spacing: 0.02em;
    margin-top: 10px;
}

@keyframes titleShine {
    to { background-position: 200% center; }
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255,140,66,0.3), rgba(255,215,0,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
}

.hero-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    margin: 0 auto 40px;
    box-shadow: 0 0 20px rgba(255,215,0,0.5);
    animation: dividerPulse 3s ease-in-out infinite;
}

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

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tag {
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    position: relative;
    padding: 8px 20px;
    background: rgba(255,140,66,0.1);
    border: 1px solid rgba(255,140,66,0.3);
    border-radius: 30px;
    transition: all 0.4s ease;
    animation: tagFloat 3s ease-in-out infinite;
}

.tag:nth-child(1) { animation-delay: 0s; }
.tag:nth-child(3) { animation-delay: 0.5s; }
.tag:nth-child(5) { animation-delay: 1s; }

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

.tag:hover {
    background: rgba(255,140,66,0.2);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,140,66,0.3);
    transform: translateY(-5px);
}

.tag::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.tag:hover::before {
    opacity: 0.3;
}

.tag-separator {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    animation: separatorPulse 2s ease-in-out infinite;
}

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

/* Responsive Hero */
@media (max-width: 1200px) {
    .hero-title-spectacular {
        font-size: 5rem;
    }
    .hero-tagline {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-title-spectacular {
        font-size: 3rem;
    }
    .hero-tagline {
        font-size: 1rem;
        flex-direction: column;
        gap: 15px;
    }
    .tag {
        font-size: 0.9rem;
    }
    .tag-separator {
        display: none;
    }
}
/* ==================== SLIDER FIX - PIU ALTO ==================== */
.slider-section {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.swiper {
    width: 100%;
    min-height: 100vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 60px 40px;
}

.slide-title-main {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 1200px) {
    .slide-title-main {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .slide-title-main {
        font-size: 3.5rem;
    }
}

/* ==================== GAME INSTRUCTIONS ==================== */
.game-instructions {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.game-instructions p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.game-instructions i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ==================== SAVED PALETTES ==================== */
.saved-palettes {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,140,66,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,140,66,0.2);
}

.saved-palettes h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.saved-palettes h3 i {
    color: var(--primary);
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

.saved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.saved-palette-item {
    background: var(--dark);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(255,140,66,0.3);
    transition: all 0.3s;
}

.saved-palette-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,140,66,0.3);
}

.saved-colors {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.saved-colors span {
    flex: 1;
    height: 60px;
    border-radius: 8px;
}

.saved-date {
    display: block;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.saved-actions {
    display: flex;
    gap: 10px;
}

.saved-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.load-palette {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.load-palette:hover {
    transform: scale(1.05);
}

.delete-palette {
    background: rgba(255,0,0,0.2);
    color: #ff6b6b;
}

.delete-palette:hover {
    background: rgba(255,0,0,0.3);
}

/* ==================== WORLD INFO ==================== */
.world-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.world-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.world-stat i {
    font-size: 3rem;
    color: var(--primary);
}

.world-stat span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light);
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,140,66,0.1);
    border: 2px solid rgba(255,140,66,0.3);
    border-radius: 50%;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

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

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

/* ==================== PREVIEW INFO ==================== */
.preview-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.preview-info i {
    color: var(--primary);
}

/* ==================== EGG SHARE BUTTON ==================== */
.egg-share {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
    transition: all 0.3s;
}

.egg-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* ==================== BREAKPOINTS ==================== */

@media (max-width: 1200px) {
    .cert-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .events-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 968px) {
    .container { padding: 0 20px; }
    .menu-toggle { display: flex !important; }
    nav {
        position: fixed; top: 0; right: -100%;
        width: min(300px, 85vw); height: 100vh;
        background: rgba(10,10,10,0.98); backdrop-filter: blur(20px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 40px; transition: right 0.4s; z-index: 1000;
        padding: 80px 20px 40px;
    }
    nav.active { right: 0; }
    nav a { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    section { padding: 55px 0; }
    .gallery-grid-premium { grid-template-columns: 1fr; }
    .gallery-box.large, .gallery-box.tall, .gallery-box {
        grid-column: span 1; grid-row: span 1; height: 200px;
    }
    .cert-grid { grid-template-columns: 1fr !important; }
    .stat-box { min-width: 100%; }
    .game-stats { flex-direction: column; }
    #game-canvas { height: 280px; }
    #preview-canvas { height: 240px; }
    #globe-container { height: 280px; }
    .presets-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-social { justify-content: center; }
    .tag-separator { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    header { padding: 15px !important; }
    .logo { font-size: 1.2rem; }
    section { padding: 45px 0; }
    .countdown-box { padding: 14px 8px; min-width: 60px; max-width: 80px; }
    .countdown-number { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .countdown-label { font-size: 0.65rem; letter-spacing: 0; }
    .service-card { padding: 25px 15px; }
    .card-number { font-size: 2.5rem; }
    .about-image { height: 200px; }
    .contact-form { gap: 12px; }
    #game-canvas { height: 240px; }
    #preview-canvas { height: 200px; }
    #globe-container { height: 240px; }
    .preloader-logo { width: 150px; height: 150px; }
    .ring-1 { width: 145px; height: 145px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 80px; height: 80px; }
    .logo-center h1 { font-size: 1.5rem; }
    .presets-grid { grid-template-columns: repeat(2, 1fr); }
    .color-slots { grid-template-columns: 1fr; }
    .btn-primary { width: 100%; justify-content: center; }
}

/* LANDSCAPE MOBILE */
@media (max-height: 500px) and (orientation: landscape) {
    #hero, .swiper-slide { min-height: auto; padding: 60px 20px 40px; }
    .hero-title-spectacular, .hero-content h1, .slide-title-main {
        font-size: clamp(1.6rem, 5vw, 2.8rem);
    }
    nav { width: min(280px, 70vw); }
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */
@media (max-width: 768px) {
    .game-instructions {
        flex-direction: column;
        gap: 15px;
    }
    
    .world-info {
        gap: 30px;
    }
    
    .world-stat i {
        font-size: 2rem;
    }
    
    .world-stat span {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .saved-grid {
        grid-template-columns: 1fr;
    }
}
