/* =========================================================
   PULAUTOTO
   LUXURY ROYAL CASINO
   DARK NAVY + ROYAL GOLD
========================================================= */

:root {

    --navy-950: #030812;
    --navy-900: #050d1b;
    --navy-850: #071223;
    --navy-800: #0a172a;
    --navy-700: #0e1f37;

    --gold: #d7b45a;
    --gold-light: #f5dc8a;
    --gold-dark: #9d7627;

    --white: #f8f7f2;
    --muted: #9ba8ba;
    --muted-light: #c5ceda;

    --border: rgba(215, 180, 90, .18);
    --glass: rgba(255, 255, 255, .045);

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --container: 1180px;

    --shadow-gold:
        0 0 50px rgba(215, 180, 90, .08);

    --shadow-dark:
        0 25px 70px rgba(0,0,0,.35);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    min-height: 100vh;

    font-family:
        "Inter",
        Arial,
        sans-serif;

    color: var(--white);

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(215,180,90,.06),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 40%,
            rgba(33,78,135,.12),
            transparent 35%
        ),
        var(--navy-950);

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   BACKGROUND
========================================================= */

.royal-background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.royal-grid {

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}

.royal-orb {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .15;
}

.orb-one {

    top: 5%;
    left: -15%;

    background:
        rgba(215,180,90,.5);
}

.orb-two {

    right: -15%;
    top: 30%;

    background:
        rgba(36,94,160,.6);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 100;

    background:
        rgba(3,8,18,.82);

    border-bottom:
        1px solid
        rgba(255,255,255,.05);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);
}

.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.brand img {
    width: 170px;
    height: auto;
}

.desktop-nav {

    display: flex;

    align-items: center;

    gap: 28px;
}

.desktop-nav a {

    color: var(--muted);

    font-size: 13px;

    font-weight: 600;

    transition: .3s ease;
}

.desktop-nav a:hover {
    color: var(--gold-light);
}

.header-actions {

    display: flex;

    gap: 10px;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {

    min-height: 44px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding:
        10px 20px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {

    color: #15100a;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 10px 35px
        rgba(215,180,90,.16);
}

.btn-gold:hover {

    box-shadow:
        0 15px 45px
        rgba(215,180,90,.28);
}

.btn-outline {

    color: var(--gold-light);

    border:
        1px solid
        rgba(215,180,90,.35);

    background:
        rgba(215,180,90,.035);
}

.btn-outline:hover {
    background:
        rgba(215,180,90,.08);
}

.btn-glass {

    color: var(--white);

    border:
        1px solid
        rgba(255,255,255,.1);

    background:
        rgba(255,255,255,.035);

    backdrop-filter: blur(10px);
}

.btn-large {

    min-height: 54px;

    padding-inline: 27px;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    padding:
        100px 0 90px;
}

.hero-grid {

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 70px;
}

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: .18em;

    font-weight: 800;
}

.eyebrow-dot {

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);

    box-shadow:
        0 0 15px
        rgba(215,180,90,.7);
}

.hero h1 {

    max-width: 750px;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(38px, 5vw, 70px);

    line-height: 1.1;

    letter-spacing: -.025em;
}

.hero h1 span {

    display: block;

    margin-top: 8px;

    color: var(--gold-light);
}

.hero-description {

    max-width: 640px;

    margin-top: 25px;

    color: var(--muted);

    font-size: 16px;
}

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.hero-trust {

    display: flex;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 45px;
}

.hero-trust div {

    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-trust strong {

    color: var(--gold-light);

    font-family: "Cinzel", serif;

    font-size: 18px;
}

.hero-trust span {

    color: var(--muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .1em;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position: relative;

    min-height: 560px;

    display: grid;

    place-items: center;
}

.hero-card {

    position: relative;

    width: min(100%, 510px);

    aspect-ratio: 1 / 1;

    border:
        1px solid
        rgba(215,180,90,.28);

    border-radius:
        34px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.015)
        );

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.5),
        0 0 80px
        rgba(215,180,90,.08);

    transform:
        perspective(1000px)
        rotateY(-5deg);
}

.hero-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .86;
}

.hero-card::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,8,18,.9),
            transparent 55%
        );
}

.card-shine {

    position: absolute;

    z-index: 2;

    width: 250px;
    height: 100%;

    top: 0;
    left: -300px;

    transform:
        skewX(-20deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.16),
            transparent
        );

    animation:
        royalShine 6s infinite;
}

@keyframes royalShine {

    0% {
        left: -300px;
    }

    45%,
    100% {
        left: 700px;
    }
}

.hero-card-overlay {

    position: absolute;

    z-index: 3;

    left: 28px;
    right: 28px;
    bottom: 25px;

    display: flex;

    justify-content: space-between;

    align-items: end;
}

.hero-card-overlay small {

    display: block;

    color: var(--gold-light);

    font-size: 10px;

    letter-spacing: .2em;
}

.hero-card-overlay strong {

    font-family: "Cinzel", serif;

    font-size: 24px;
}

.royal-badge {

    padding:
        7px 12px;

    border:
        1px solid
        rgba(215,180,90,.4);

    border-radius: 999px;

    color: var(--gold-light);

    background:
        rgba(0,0,0,.3);

    font-size: 10px;

    letter-spacing: .12em;
}

.floating-card {

    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        13px 17px;

    border:
        1px solid
        rgba(215,180,90,.2);

    border-radius: 14px;

    background:
        rgba(5,13,27,.8);

    backdrop-filter:
        blur(16px);

    box-shadow:
        var(--shadow-dark);
}

.floating-card span {

    color: var(--gold-light);

    font-size: 22px;
}

.floating-card small {

    display: block;

    color: var(--muted);

    font-size: 8px;

    letter-spacing: .15em;
}

.floating-card strong {

    display: block;

    font-size: 11px;

    letter-spacing: .08em;
}

.floating-card-one {

    top: 80px;
    left: -25px;
}

.floating-card-two {

    right: -20px;
    bottom: 80px;
}


/* =========================================================
   SECTION
========================================================= */

section {
    scroll-margin-top: 100px;
}

.intro-section,
.games-section,
.features-section,
.about-section,
.faq-section,
.contact-section {

    padding:
        100px 0;
}

.section-heading {

    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 45px;
}

.section-heading.center {

    max-width: 760px;

    margin-inline: auto;

    text-align: center;

    display: block;
}

.section-heading h2 {

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 1.2;
}

.section-heading h2 span {
    color: var(--gold-light);
}

.section-heading p {

    max-width: 560px;

    color: var(--muted);

    font-size: 14px;
}

.section-heading.center p {

    margin:
        18px auto 0;
}


/* =========================================================
   GAMES
========================================================= */

.game-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.game-card {

    position: relative;

    min-height: 300px;

    padding: 28px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

    overflow: hidden;
}

.game-card::before {

    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    top: -70px;
    right: -70px;

    border-radius: 50%;

    background:
        rgba(215,180,90,.08);

    filter: blur(10px);
}

.game-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(215,180,90,.4);

    box-shadow:
        var(--shadow-gold);
}

.game-icon {

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 16px;

    color: var(--gold-light);

    background:
        rgba(215,180,90,.07);

    border:
        1px solid
        rgba(215,180,90,.18);

    font-size: 25px;
}

.game-card h3 {

    margin-top: 35px;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 21px;
}

.game-card p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 13px;
}

.game-card > a {

    width: 42px;
    height: 42px;

    margin-top: 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--gold-light);

    border:
        1px solid
        rgba(215,180,90,.25);

    transition: .25s;
}

.game-card > a:hover {
    background:
        var(--gold);

    color:
        var(--navy-950);
}


/* =========================================================
   FEATURES
========================================================= */

.features-section {

    background:
        rgba(255,255,255,.012);

    border-top:
        1px solid
        rgba(255,255,255,.035);

    border-bottom:
        1px solid
        rgba(255,255,255,.035);
}

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.feature-card {

    position: relative;

    padding: 30px;

    min-height: 290px;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-md);

    background:
        rgba(255,255,255,.025);
}

.feature-number {

    position: absolute;

    top: 18px;
    right: 20px;

    color:
        rgba(215,180,90,.22);

    font-size: 11px;

    letter-spacing: .1em;
}

.feature-icon {

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--gold-light);

    background:
        rgba(215,180,90,.07);

    font-size: 21px;
}

.feature-card h3 {

    margin-top: 28px;

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 18px;
}

.feature-card p {

    margin-top: 10px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

    align-items: center;
}

.about-frame {

    aspect-ratio: 1 / 1;

    max-width: 430px;

    margin: auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border:
        1px solid
        rgba(215,180,90,.25);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(215,180,90,.1),
            transparent 65%
        );

    box-shadow:
        0 0 100px
        rgba(215,180,90,.07);
}

.about-symbol {

    color: var(--gold-light);

    font-size: 80px;

    line-height: 1;

    text-shadow:
        0 0 40px
        rgba(215,180,90,.2);
}

.about-frame span {

    margin-top: 20px;

    color: var(--muted);

    font-size: 11px;

    letter-spacing: .35em;
}

.about-frame strong {

    font-family:
        "Cinzel",
        Georgia,
        serif;

    color: var(--gold-light);

    font-size: 42px;

    line-height: 1.1;
}

.about-frame small {

    color: var(--muted);

    font-size: 9px;

    letter-spacing: .2em;
}

.about-content h2 {

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(30px, 4vw, 50px);

    line-height: 1.2;
}

.about-content h2 span {
    color: var(--gold-light);
}

.about-content > p {

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;
}

.about-points {

    display: grid;

    gap: 12px;

    margin-top: 28px;
}

.about-points div {

    display: flex;

    align-items: center;

    gap: 12px;
}

.about-points span {

    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--gold-light);

    background:
        rgba(215,180,90,.08);

    border:
        1px solid
        rgba(215,180,90,.18);

    font-size: 12px;
}

.about-points p {

    color: var(--muted-light);

    font-size: 13px;
}


/* =========================================================
   RESPONSIBLE GAMING
========================================================= */

.responsible-section {

    padding:
        0 0 100px;
}

.responsible-box {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    padding: 35px;

    border:
        1px solid
        rgba(215,180,90,.15);

    border-radius:
        var(--radius-lg);

    background:
        linear-gradient(
            135deg,
            rgba(215,180,90,.06),
            rgba(255,255,255,.02)
        );
}

.responsible-icon {

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: var(--gold-light);

    border:
        1px solid
        rgba(215,180,90,.25);

    background:
        rgba(215,180,90,.06);

    font-weight: 800;
}

.responsible-box h2 {

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 30px;
}

.responsible-box h2 span {
    color: var(--gold-light);
}

.responsible-box p {

    max-width: 900px;

    margin-top: 12px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   FAQ
========================================================= */

.faq-grid {

    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 80px;

    align-items: start;
}

.faq-list {

    display: grid;

    gap: 10px;
}

.faq-list details {

    border:
        1px solid
        rgba(255,255,255,.07);

    border-radius:
        14px;

    background:
        rgba(255,255,255,.025);

    overflow: hidden;
}

.faq-list summary {

    list-style: none;

    cursor: pointer;

    padding:
        20px 22px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {

    color: var(--gold-light);

    font-size: 20px;

    line-height: 1;
}

.faq-list details p {

    padding:
        0 22px 22px;

    color: var(--muted);

    font-size: 13px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding:
        30px 0 100px;
}

.cta-box {

    position: relative;

    padding:
        80px 30px;

    text-align: center;

    overflow: hidden;

    border:
        1px solid
        rgba(215,180,90,.22);

    border-radius:
        32px;

    background:
        radial-gradient(
            circle at center,
            rgba(215,180,90,.09),
            transparent 60%
        ),
        rgba(255,255,255,.02);
}

.cta-decoration {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    color:
        rgba(215,180,90,.035);

    font-size: 300px;

    pointer-events: none;
}

.cta-box > *:not(.cta-decoration) {
    position: relative;
    z-index: 2;
}

.cta-box h2 {

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size:
        clamp(35px, 5vw, 60px);

    line-height: 1.1;
}

.cta-box h2 span {
    color: var(--gold-light);
}

.cta-box p {

    max-width: 650px;

    margin:
        18px auto 0;

    color: var(--muted);
}

.cta-actions {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    border-top:
        1px solid
        rgba(255,255,255,.04);
}

.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;
}

.contact-grid h2 {

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 42px;

    line-height: 1.2;
}

.contact-grid h2 span {
    color: var(--gold-light);
}

.contact-grid > div:first-child p {

    max-width: 520px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 14px;
}

.contact-links {

    display: grid;

    gap: 10px;
}

.contact-links a {

    display: flex;

    align-items: center;

    gap: 18px;

    padding:
        18px 20px;

    border:
        1px solid
        rgba(255,255,255,.06);

    border-radius: 12px;

    color: var(--muted-light);

    background:
        rgba(255,255,255,.02);

    transition: .25s;
}

.contact-links a:hover {

    border-color:
        rgba(215,180,90,.3);

    color:
        var(--gold-light);

    transform:
        translateX(5px);
}

.contact-links span {

    color: var(--gold);

    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    border-top:
        1px solid
        rgba(255,255,255,.06);

    background:
        #02060e;
}

.footer-main {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1.2fr;

    gap: 50px;

    padding:
        70px 0 55px;
}

.footer-brand img {

    width: 160px;
}

.footer-brand p {

    max-width: 320px;

    margin-top: 18px;

    color: var(--muted);

    font-size: 12px;
}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {

    margin-bottom: 8px;

    color: var(--gold-light);

    font-family:
        "Cinzel",
        Georgia,
        serif;

    font-size: 14px;
}

.footer-column a,
.footer-column p {

    color: var(--muted);

    font-size: 12px;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.05);

    color: var(--muted);

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 520px;
    }

    .game-grid,
    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


@media (max-width: 700px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        width: 135px;
    }

    .header-actions .btn {
        min-height: 38px;
        padding-inline: 14px;
        font-size: 11px;
    }

    .hero {
        padding:
            70px 0 70px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-card {
        max-width: 370px;
    }

    .floating-card {
        transform: scale(.8);
    }

    .floating-card-one {
        left: -10px;
        top: 30px;
    }

    .floating-card-two {
        right: -10px;
        bottom: 30px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    .game-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        min-height: 260px;
    }

    .about-frame {
        max-width: 300px;
    }

    .about-symbol {
        font-size: 60px;
    }

    .about-frame strong {
        font-size: 32px;
    }

    .responsible-box {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-grid h2 {
        font-size: 34px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }
}


@media (max-width: 430px) {

    .header-actions .btn-outline {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 18px;
    }

    .hero-card {
        border-radius: 24px;
    }

    .hero-card-overlay {
        left: 18px;
        right: 18px;
    }

    .floating-card {
        display: none;
    }

    .cta-box {
        padding:
            60px 20px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}