:root{
    --bg:#07111f;
    --bg2:#0d1b2f;
    --card:#ffffff;
    --text:#132033;
    --muted:#6b7280;
    --blue:#1d4ed8;
    --blue2:#2563eb;
    --gold:#f5b942;
    --line:#e5e7eb;
    --white:#ffffff;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Inter',sans-serif;
    background:#f4f7fb;
    color:var(--text);
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

.topbar{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(7,17,31,.94);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
    min-height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    color:white;
}

.brand-icon{
    width:44px;
    height:44px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--gold),#ffe29a);
    color:#111827;
    display:grid;
    place-items:center;
    font-size:26px;
    font-weight:900;
}

.brand strong{
    display:block;
    font-size:18px;
}

.brand span{
    display:block;
    font-size:13px;
    color:#cbd5e1;
}

nav{
    display:flex;
    gap:18px;
    color:#e5e7eb;
    font-size:14px;
    font-weight:600;
}

nav a:hover{
    color:var(--gold);
}

.hero{
    background:
        radial-gradient(circle at top left,rgba(245,185,66,.25),transparent 32%),
        radial-gradient(circle at 70% 20%,rgba(37,99,235,.35),transparent 30%),
        linear-gradient(135deg,#07111f,#0d1b2f 55%,#111827);
    color:white;
    padding:80px 0 70px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:48px;
    align-items:center;
}

.eyebrow{
    display:inline-flex;
    background:rgba(245,185,66,.14);
    color:#ffe29a;
    border:1px solid rgba(245,185,66,.28);
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.hero h1{
    font-size:clamp(38px,6vw,68px);
    line-height:1;
    margin:0 0 24px;
    letter-spacing:-2px;
}

.hero p{
    font-size:19px;
    line-height:1.65;
    color:#dbeafe;
    max-width:680px;
    margin:0 0 30px;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:34px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    border-radius:14px;
    font-weight:800;
    transition:.2s ease;
}

.btn.primary{
    background:linear-gradient(135deg,var(--gold),#ffe08a);
    color:#111827;
}

.btn.secondary{
    background:rgba(255,255,255,.08);
    color:white;
    border:1px solid rgba(255,255,255,.18);
}

.btn:hover{
    transform:translateY(-2px);
}

.hero-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    max-width:420px;
}

.hero-cards div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    padding:18px;
    border-radius:18px;
}

.hero-cards strong{
    display:block;
    font-size:22px;
    margin-bottom:5px;
    color:white;
}

.hero-cards span{
    color:#cbd5e1;
    font-size:14px;
}

.hero-poster{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.14);
    padding:14px;
    border-radius:28px;
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.hero-poster img{
    border-radius:20px;
    width:100%;
    object-fit:cover;
}

.poster-placeholder{
    min-height:420px;
    border:2px dashed rgba(255,255,255,.25);
    border-radius:20px;
    display:grid;
    place-items:center;
    text-align:center;
    padding:30px;
    color:#cbd5e1;
}

.poster-placeholder strong{
    color:white;
}

.section{
    padding:80px 0;
}

.section-dark{
    background:var(--bg);
    color:white;
}

.section-title{
    margin-bottom:34px;
}

.section-title span{
    color:var(--blue2);
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:.12em;
}

.section-dark .section-title span{
    color:var(--gold);
}

.section-title h2{
    font-size:clamp(30px,4vw,46px);
    margin:8px 0 0;
    letter-spacing:-1px;
}

.section-title p{
    color:var(--muted);
    font-size:17px;
}

.info-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.info-card{
    background:white;
    border:1px solid var(--line);
    border-radius:22px;
    padding:26px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.info-card h3{
    margin:0 0 12px;
    font-size:19px;
}

.info-card p{
    color:var(--muted);
    line-height:1.6;
    margin:0;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.time-item{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    border-radius:22px;
    padding:24px;
}

.time-item strong{
    display:block;
    color:var(--gold);
    font-size:22px;
    margin-bottom:14px;
}

.time-item span{
    display:block;
    color:#e5e7eb;
    line-height:1.7;
}

.hotel-box{
    background:white;
    border:1px solid var(--line);
    border-radius:26px;
    padding:32px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 12px 30px rgba(15,23,42,.06);
}

.hotel-box h3{
    margin:0 0 12px;
    font-size:28px;
}

.hotel-box p{
    color:var(--muted);
    line-height:1.7;
    max-width:800px;
}

.section-links{
    background:#eaf1fb;
}

.link-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.link-grid a{
    background:white;
    padding:24px;
    border-radius:20px;
    border:1px solid var(--line);
    font-weight:900;
    text-align:center;
    box-shadow:0 12px 28px rgba(15,23,42,.06);
}

.link-grid a:hover{
    background:var(--blue);
    color:white;
}

.gallery-block{
    margin-top:44px;
}

.gallery-block h3{
    font-size:28px;
    margin:0 0 18px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.gallery-item{
    position:relative;
    display:block;
    border-radius:22px;
    overflow:hidden;
    background:#ddd;
    aspect-ratio:4/3;
    box-shadow:0 12px 32px rgba(15,23,42,.10);
}

.gallery-item::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,0,0,.38),
        rgba(0,0,0,0));
    opacity:0;
    transition:.25s ease;
}

.gallery-item:hover::after{
    opacity:1;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s ease;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.empty-gallery{
    background:white;
    border:1px dashed #cbd5e1;
    color:var(--muted);
    padding:20px;
    border-radius:18px;
}

.footer{
    background:#020617;
    color:#94a3b8;
    padding:26px 0;
    text-align:center;
    font-size:14px;
}

@media(max-width:980px){
    .hero-grid,
    .info-grid,
    .timeline,
    .link-grid,
    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

    nav{
        display:none;
    }

    .hotel-box{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:640px){
    .hero{
        padding:55px 0;
    }

    .hero-grid,
    .info-grid,
    .timeline,
    .link-grid,
    .gallery-grid,
    .hero-cards{
        grid-template-columns:1fr;
    }

    .nav{
        min-height:68px;
    }

    .brand span{
        display:none;
    }

    .section{
        padding:55px 0;
    }
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
    padding:30px;
}

.lightbox.active{
    display:flex;
}

.lightbox img{
    max-width:92%;
    max-height:92%;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.lightbox-close{
    position:absolute;
    top:24px;
    right:24px;
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:white;
    color:#111827;
    font-size:30px;
    cursor:pointer;
    font-weight:700;
}