:root {
    --black: #05040a;
    --purple: #160922;
    --gold: #f6c85f;
    --hot: #ff2db1;
    --cyan: #41f4ff;
    --cream: #fff5df;
    --line: rgba(255, 255, 255, .14);
    --max: 1180px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, system-ui, sans-serif;
    background: var(--black);
    color: #fff;
    line-height: 1.62;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    max-width: var(--max);
    margin: auto;
    padding: 0 24px;
}

h1,
h2 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -.035em;
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(circle at 18% 12%, rgba(255, 45, 177, .28), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(65, 244, 255, .18), transparent 28%),
        linear-gradient(180deg, #05040a, #14051d 52%, #05040a);
}

body:after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 50% 0%, #000, transparent 72%);
}

nav {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 60;
    pointer-events: none;
}

.navin {
    pointer-events: auto;
    max-width: var(--max);
    margin: auto;
    padding: 12px 14px 12px 22px;
    border-radius: 999px;
    background: rgba(5, 4, 10, .72);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .35s;
}

nav.scrolled .navin {
    background: rgba(5, 4, 10, .9);
    box-shadow: 0 20px 60px -28px #000;
}

.brand {
    font-weight: 900;
    font-size: 20px;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.diamond {
    width: 32px;
    height: 32px;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--gold), var(--hot));
    box-shadow: 0 0 24px rgba(246, 200, 95, .3);
}

.navlinks {
    display: flex;
    gap: 24px;
    font-weight: 800;
    font-size: 14px;
    color: rgba(255, 255, 255, .76);
}

.navcall {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), #ff9e3b);
    color: #1b0f05;
    font-weight: 900;
    padding: 12px 20px;
}

.hero {
    padding: 152px 0 98px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 58px;
    align-items: center;
}

.badge {
    display: inline-flex;
    color: var(--gold);
    border: 1px solid rgba(246, 200, 95, .38);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: rgba(246, 200, 95, .06);
}

h1 {
    font-size: clamp(52px, 7.4vw, 92px);
    line-height: .98;
    margin: 22px 0 18px;
}

h1 em {
    font-style: italic;
    color: var(--hot);
    text-shadow: 0 0 30px rgba(255, 45, 177, .5);
}

.lead {
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
    max-width: 560px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    padding: 16px 28px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--hot), #8e3bff);
    box-shadow: 0 0 32px rgba(255, 45, 177, .28);
    transition: .35s var(--ease);
}

.btn.gold {
    background: linear-gradient(90deg, var(--gold), #ff9e3b);
    color: #1b0f05;
}

.btn:hover {
    transform: translateY(-3px);
}

.micro {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    font-weight: 800;
}

.marquee {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.sign {
    position: absolute;
    width: min(440px, 100%);
    height: 360px;
    border: 5px solid var(--gold);
    border-radius: 42px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 45, 177, .3), transparent 60%), linear-gradient(180deg, #21102c, #09040e);
    display: grid;
    place-items: center;
    text-align: center;
    box-shadow: 0 0 60px rgba(246, 200, 95, .22), inset 0 0 0 8px rgba(255, 255, 255, .04);
    overflow: hidden;
}

.sign:before {
    content: "";
    position: absolute;
    inset: -18px;
    border: 2px dotted rgba(246, 200, 95, .8);
    border-radius: 58px;
    animation: blink 1.4s steps(2, end) infinite;
}

@keyframes blink {
    50% {
        opacity: .35;
    }
}

.sign .big {
    font-family: 'Playfair Display';
    font-size: 70px;
    color: var(--gold);
    text-shadow: 0 0 24px rgba(246, 200, 95, .5);
}

.sign p {
    color: rgba(255, 255, 255, .7);
    font-weight: 800;
}

.vegas-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 260px;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, .12);
    transform: rotate(6deg);
    box-shadow: 0 30px 80px -38px #000;
}

.vegas-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chip {
    position: absolute;
    background: #fff;
    color: #160922;
    border-radius: 18px;
    padding: 12px 16px;
    font-weight: 900;
    box-shadow: 0 20px 50px -28px #000;
    animation: float 5s ease-in-out infinite;
}

.chip.c1 {
    left: 5%;
    top: 18%;
}

.chip.c2 {
    right: 0;
    bottom: 18%;
    animation-delay: -2s;
}

@keyframes float {
    50% {
        transform: translateY(-14px);
    }
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, var(--hot), #8e3bff);
    padding: 14px 0;
}

.track {
    display: inline-flex;
    gap: 34px;
    animation: marq 22s linear infinite;
}

.track span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

@keyframes marq {
    to {
        transform: translateX(-50%);
    }
}

section {
    padding: 96px 0;
}

.section-h {
    font-size: clamp(36px, 5.2vw, 62px);
    line-height: 1.02;
}

.section-p {
    max-width: 720px;
    color: rgba(255, 255, 255, .68);
    font-size: 17px;
    margin-top: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .85s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.slot {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.slot span {
    font-family: 'Playfair Display';
    font-size: 40px;
    color: var(--gold);
}

.slot h3 {
    font-size: 18px;
    margin: 8px 0;
}

.slot p {
    color: rgba(255, 255, 255, .66);
    font-size: 15px;
}

.moods {
    background: rgba(255, 255, 255, .04);
}

.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}

.mood {
    min-height: 230px;
    border-radius: 32px;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
    border: 1px solid var(--line);
}

.mood h3 {
    font-family: 'Playfair Display';
    font-size: 28px;
    color: var(--gold);
}

.mood p {
    color: rgba(255, 255, 255, .67);
    margin-top: 8px;
}

.diff {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.rows {
    border-top: 1px solid var(--line);
}

.row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.row b {
    color: var(--cyan);
    font-size: 19px;
}

.row p {
    color: rgba(255, 255, 255, .68);
}

.photo-card {
    border-radius: 42px;
    overflow: hidden;
    min-height: 470px;
    box-shadow: 0 40px 90px -50px #000;
    border: 1px solid var(--line);
}

.photo-card img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    filter: saturate(1.2);
}

.duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.card {
    background: #fff;
    color: #130717;
    border-radius: 34px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.card:before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 45, 177, .18);
    right: -70px;
    top: -70px;
}

.card.m:before {
    background: rgba(65, 244, 255, .2);
}

.card h2 {
    font-size: 40px;
    line-height: 1;
}

.card h3 {
    margin: 8px 0 18px;
    color: #6c5870;
}

.card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.card li {
    padding-left: 28px;
    position: relative;
    color: #5b4b60;
}

.card li:before {
    content: "♦";
    position: absolute;
    left: 0;
    color: var(--hot);
}

.card.m li:before {
    color: #0c9ea8;
}

.card .btn {
    margin-top: 24px;
}

.safegrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.safeitem {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 26px;
}

.safeitem h3 {
    color: var(--gold);
}

.safeitem p {
    color: rgba(255, 255, 255, .68);
    margin-top: 6px;
}

.faq {
    background: #09040e;
}

.faq-wrap {
    max-width: 840px;
    margin: 38px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line);
    border-radius: 20px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    padding: 22px 24px;
    text-align: left;
    font-weight: 900;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: .45s var(--ease);
}

.faq-a p {
    padding: 0 24px 22px;
    color: rgba(255, 255, 255, .68);
}

.faq-item.open .faq-a {
    max-height: 220px;
}

.faq-item.open .faq-q span {
    transform: rotate(45deg);
}

.final {
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(255, 45, 177, .22), transparent 50%), #05040a;
}

.final .section-p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

footer {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    color: rgba(255, 255, 255, .62);
    text-align: center;
    font-size: 12px;
}

footer b {
    color: #fff;
    font-size: 20px;
}

@media(max-width: 930px) {
    .navlinks {
        display: none;
    }

    .hero-grid,
    .diff,
    .duo {
        grid-template-columns: 1fr;
    }

    .slots,
    .mood-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safegrid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 580px) {
    .wrap {
        padding: 0 18px;
    }

    .slots,
    .mood-grid {
        grid-template-columns: 1fr;
    }

    .row {
        grid-template-columns: 1fr;
    }

    .marquee {
        min-height: 480px;
    }

    .vegas-img {
        display: none;
    }
}
