:root{
    --navy:#0b2341;
    --gold:#d4af37;
    --white:#ffffff;
    --light:#f7f8fa;
    --text:#333333;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Be Vietnam Pro',sans-serif;
    background:#fff;
    color:var(--text);
    overflow-x:hidden;
    line-height:1.7;
}

/* NAVBAR */

.topc-navbar{
    background:rgba(11,35,65,.95);
    backdrop-filter:blur(10px);
    transition:.3s;
    padding:12px 0;
}

.navbar-brand{
    color:var(--gold)!important;
    font-size:1.5rem;
    font-weight:800;
}

.nav-link{
    color:#fff!important;
    font-weight:600;
    margin-left:10px;
    transition:.3s;
}

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

/* HERO */

.hero{
    position:relative;
    height:100vh;
    min-height:700px;
    overflow:hidden;
}

.hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.45)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    width:min(1000px,90%);
    color:white;
    z-index:2;
}

.hero-title{
    font-size:clamp(2.2rem,6vw,5.5rem);
    font-weight:800;
    line-height:1.1;
    text-shadow:0 5px 20px rgba(0,0,0,.3);
}

.hero-subtitle{
    font-size:clamp(1rem,2vw,1.4rem);
    margin-top:20px;
}

/* BUTTONS */

.btn-gold{
    display:inline-block;
    background:var(--gold);
    color:var(--navy);
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
    margin-top:25px;
}

.btn-gold:hover{
    transform:translateY(-3px);
    color:var(--navy);
}

.btn-outline{
    display:inline-block;
    border:2px solid white;
    color:white;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-outline:hover{
    background:white;
    color:var(--navy);
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
}

/* SECTION */

.section{
    padding:100px 0;
}

.section-title{
    color:var(--navy);
    font-size:clamp(2rem,4vw,3rem);
    font-weight:800;
    margin-bottom:25px;
}

.bg-light{
    background:var(--light)!important;
}

/* COUNTDOWN */

.countdown{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin:35px 0;
}

.time-box{
    background:var(--navy);
    color:white;
    padding:20px;
    border-radius:15px;
    min-width:100px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.time-box span{
    display:block;
    font-size:2rem;
    font-weight:800;
    color:var(--gold);
}

.time-box small{
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:1px;
}

/* FEATURES */

.feature-card{
    background:white;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-icon{
    font-size:3rem;
    margin-bottom:15px;
}

.feature-card h4{
    color:var(--navy);
    font-weight:700;
    margin-bottom:10px;
}

/* TIMELINE */

.timeline{
    max-width:900px;
    margin:auto;
}

.timeline-item{
    background:white;
    padding:25px;
    border-left:5px solid var(--gold);
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.timeline-date{
    color:var(--gold);
    font-weight:700;
    margin-bottom:10px;
}

/* FORMAT */

.format-card{
    background:var(--navy);
    color:white;
    border-radius:20px;
    text-align:center;
    padding:45px 20px;
    font-size:1.3rem;
    font-weight:700;
    height:100%;
    transition:.3s;
}

.format-card:hover{
    transform:translateY(-5px);
}

.dreambreaker{
    background:var(--gold);
    color:var(--navy);
    padding:20px;
    border-radius:15px;
    text-align:center;
    font-weight:700;
    margin-top:30px;
}

/* PRICING */

.pricing-card{
    background:white;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.price{
    font-size:4rem;
    color:var(--gold);
    font-weight:800;
}

.premium{
    border:3px solid var(--gold);
}

/* VENUE */

iframe{
    border-radius:20px;
}

/* STATS */

.stats-section{
    background:var(--navy);
    color:white;
}

.stat-box{
    padding:30px;
}

.stat-box h2{
    color:var(--gold);
    font-size:3.5rem;
    font-weight:800;
}

.stat-box p{
    margin-top:10px;
}

/* COUNTRIES */

.countries{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.countries span{
    background:white;
    border-radius:50px;
    padding:12px 20px;
    font-weight:600;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* SPONSORS */

.sponsor-box{
    height:140px;
    background:white;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    font-weight:700;
}

/* WHATSAPP */

.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
}

/* FOOTER */

.footer{
    background:var(--navy);
    color:white;
    padding:60px 0;
}

/* MOBILE */

@media(max-width:768px){

    .hero{
        min-height:600px;
    }

    .section{
        padding:70px 0;
    }

    .hero-title{
        font-size:2.5rem;
    }

    .section-title{
        font-size:2rem;
    }

    .price{
        font-size:3rem;
    }

    .time-box{
        min-width:80px;
        padding:15px;
    }

    .time-box span{
        font-size:1.5rem;
    }

}
/* =====================================
   MOBILE OPTIMIZATION
===================================== */

@media screen and (max-width:768px){

    /* NAVBAR */

    .navbar-brand{
        font-size:1.1rem;
    }

    .navbar-toggler{
        border:none;
    }

    /* HERO */

    .hero{
        height:70vh;
        min-height:500px;
    }

    .hero img{
        object-fit:cover;
        object-position:center center;
    }

    .hero-content{
        width:95%;
        padding:15px;
    }

    .hero-title{
        font-size:1.8rem;
        line-height:1.2;
    }

    .hero-subtitle{
        font-size:.95rem;
        margin-top:10px;
    }

    /* BUTTONS */

    .btn-gold,
    .btn-outline{

        width:100%;
        max-width:280px;

        text-align:center;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    /* SECTION */

    .section{
        padding:60px 0;
    }

    .section-title{
        font-size:1.8rem;
    }

    /* COUNTDOWN */

    .countdown{
        gap:8px;
        margin-top:25px;
    }

    .time-box{

        min-width:70px;

        padding:10px 5px;

        border-radius:12px;
    }

    .time-box span{
        font-size:1.3rem;
    }

    .time-box small{
        font-size:10px;
    }

    /* FEATURE */

    .feature-card{
        padding:25px 20px;
    }

    .feature-icon{
        font-size:2.5rem;
    }

    /* TIMELINE */

    .timeline-item{
        padding:20px;
        margin-bottom:15px;
    }

    /* FORMAT */

    .format-card{
        padding:25px 15px;
        font-size:1rem;
    }

    /* PRICING */

    .pricing-card{
        padding:30px 20px;
    }

    .price{
        font-size:3rem;
    }

    /* VENUE */

    iframe{
        height:280px!important;
        margin-top:20px;
    }

    /* STATS */

    .stat-box{
        padding:20px 0;
    }

    .stat-box h2{
        font-size:2.3rem;
    }

    /* COUNTRIES */

    .countries{
        gap:8px;
    }

    .countries span{
        font-size:.9rem;
        padding:8px 14px;
    }

    /* SPONSORS */

    .sponsor-box{
        height:90px;
    }

    /* WHATSAPP */

    .whatsapp-btn{

        width:55px;
        height:55px;

        font-size:24px;

        right:15px;
        bottom:15px;
    }

}
.hero img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}
.hero img{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    object-position:center center;
}
@media(max-width:991px){

    .navbar-collapse{

        background:var(--navy);

        margin-top:10px;

        padding:15px;

        border-radius:15px;
    }

    .nav-link{

        padding:12px 0;
    }

}

.logo-header{

height:45px;
width:auto;

}

@media(max-width:768px){

.logo-header{

height:35px;

}

}

.registration-wrapper{

background:white;

padding:20px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

overflow:hidden;

}

@media(max-width:768px){

.registration-wrapper{

padding:10px;

}

.registration-wrapper iframe{

height:2200px;

}

}
.cta-section{

background:var(--navy);

color:white;

}

.cta-section h2{

font-size:3rem;
font-weight:800;

margin-bottom:15px;

}

@media(max-width:768px){

.cta-section h2{

font-size:2rem;

}

}
.footer{

background:var(--navy);

color:white;

padding:80px 0 30px;

}

.footer-links{

list-style:none;
padding:0;

}

.footer-links li{

margin-bottom:10px;

}

.footer-links a{

color:white;
text-decoration:none;

}

.footer-links a:hover{

color:var(--gold);

}
.gallery-img{

width:100%;
height:280px;

object-fit:cover;

border-radius:20px;

transition:.3s;

cursor:pointer;

}

.gallery-img:hover{

transform:scale(1.03);

}
#loader{

position:fixed;
inset:0;

background:white;

z-index:99999;

display:flex;

align-items:center;
justify-content:center;

}

.spinner{

width:60px;
height:60px;

border:5px solid #ddd;

border-top:5px solid var(--gold);

border-radius:50%;

animation:spin 1s linear infinite;

}

@keyframes spin{

100%{
transform:rotate(360deg);
}

}
.countries span{

    display:flex;
    align-items:center;
    gap:8px;

    background:white;

    padding:12px 20px;

    border-radius:50px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    font-weight:600;

}

.countries img{

    width:24px;
    height:24px;

    object-fit:cover;

    border-radius:50%;

}