* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #ffffff;
    background: #090a0f;

    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(9, 10, 15, 0.95);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid #20222b;
}

.nav-container {
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo,
.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span,
.footer-logo span {
    color: #f4bd42;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #b5bac8;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

nav a:hover {
    color: #f4bd42;
}

.nav-cta {
    padding: 10px 20px;

    color: #090a0f !important;

    background: #f4bd42;

    border-radius: 6px;
}

.menu-toggle {
    display: none;

    border: 0;

    color: #ffffff;
    background: transparent;

    font-size: 28px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 700px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(244, 189, 66, 0.14),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #090a0f,
            #11131b
        );

    overflow: hidden;
}

.hero-content {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: #f4bd42;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.hero h1 {
    max-width: 650px;

    margin-bottom: 25px;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.02;
}

.hero h1 span {
    color: #f4bd42;
}

.hero p {
    max-width: 580px;

    margin-bottom: 35px;

    color: #a8adbb;

    font-size: 18px;
}

.primary-button {
    display: inline-block;

    padding: 14px 26px;

    color: #0a0b10;

    background: #f4bd42;

    border-radius: 7px;

    font-weight: 800;

    transition: 0.3s;
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(244, 189, 66, 0.25);
}


/* =========================
   HERO VISUAL
========================= */

.hero-visual {
    position: relative;

    height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.casino-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 189, 66, 0.22),
            transparent 65%
        );
}

.casino-logo {
    position: relative;
    z-index: 2;

    width: 270px;
    height: 270px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 2px solid #f4bd42;

    background:
        radial-gradient(
            circle,
            #20232d,
            #0c0d12
        );

    box-shadow:
        0 0 70px rgba(244, 189, 66, 0.18),
        inset 0 0 40px rgba(244, 189, 66, 0.08);
}

.casino-logo span {
    color: #ffffff;

    font-size: 22px;

    letter-spacing: 5px;
}

.casino-logo strong {
    color: #f4bd42;

    font-size: 48px;

    letter-spacing: 2px;
}

.casino-chip {
    position: absolute;
    z-index: 3;

    display: flex;
    flex-direction: column;

    padding: 18px 25px;

    background: #171922;

    border: 1px solid #343744;

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.casino-chip strong {
    color: #f4bd42;

    font-size: 25px;
}

.casino-chip span {
    color: #969cac;

    font-size: 12px;
}

.chip-one {
    top: 65px;
    left: 10px;
}

.chip-two {
    right: 5px;
    bottom: 65px;
}


/* =========================
   SECTIONS
========================= */

.section {
    padding: 110px 0;

    background: #090a0f;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 15px;

    font-size: 44px;

    line-height: 1.15;
}

.section-heading p {
    color: #858b9a;
}


/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-visual {
    position: relative;

    height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #151721,
            #0e1017
        );

    border: 1px solid #272a35;
}

.about-circle {
    width: 220px;
    height: 220px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #f4bd42;

    font-size: 70px;
    font-weight: 900;

    background: #0a0b10;

    border: 2px solid #f4bd42;

    box-shadow:
        0 0 60px rgba(244, 189, 66, 0.15);
}

.floating-card {
    position: absolute;

    padding: 15px 20px;

    color: #d4d7df;

    background: #191b25;

    border: 1px solid #30333e;

    border-radius: 8px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);
}

.card-top {
    top: 45px;
    left: 30px;
}

.card-bottom {
    right: 30px;
    bottom: 45px;
}

.about-content h3 {
    margin-bottom: 20px;

    font-size: 34px;
}

.about-content p {
    margin-bottom: 18px;

    color: #8f95a4;
}

.text-link {
    display: inline-block;

    margin-top: 10px;

    color: #f4bd42;

    font-weight: 800;
}


/* =========================
   STATS
========================= */

.stats-section {
    padding: 90px 0;

    background: #11131b;

    border-top: 1px solid #222530;
    border-bottom: 1px solid #222530;
}

.stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;

    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    margin-bottom: 8px;

    color: #f4bd42;

    font-size: 48px;

    line-height: 1;
}

.stat span {
    color: #858b9a;
}


/* =========================
   VALUES
========================= */

.values-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.value-card {
    padding: 35px;

    background: #11131b;

    border: 1px solid #272a35;

    border-radius: 12px;

    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-7px);

    border-color: #f4bd42;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3);
}

.value-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 10px;

    background: rgba(244, 189, 66, 0.1);

    font-size: 24px;
}

.value-card h3 {
    margin-bottom: 12px;

    font-size: 22px;
}

.value-card p {
    color: #858b9a;
}


/* =========================
   GAMES
========================= */

.games-section {
    background: #11131b;
}

.games-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.game-card {
    padding: 35px;

    background: #0b0c11;

    border: 1px solid #292c37;

    border-radius: 12px;

    transition: 0.3s;
}

.game-card:hover {
    transform: translateY(-7px);

    border-color: #f4bd42;
}

.game-icon {
    margin-bottom: 20px;

    font-size: 45px;
}

.game-card h3 {
    margin-bottom: 10px;

    font-size: 24px;
}

.game-card p {
    min-height: 52px;

    margin-bottom: 20px;

    color: #858b9a;
}

.game-card a {
    color: #f4bd42;

    font-weight: 800;
}


/* =========================
   RESPONSIBLE GAMING
========================= */

.responsible-section {
    padding: 70px 0;

    background: #090a0f;
}

.responsible-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 45px;

    background: #12141c;

    border: 1px solid #292c37;

    border-left: 4px solid #f4bd42;

    border-radius: 12px;
}

.responsible-box h2 {
    margin-bottom: 10px;

    font-size: 30px;
}

.responsible-box p {
    max-width: 800px;

    color: #858b9a;
}

.responsible-icon {
    font-size: 60px;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding-bottom: 110px;
}

.contact-box {
    padding: 80px 30px;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #181a22,
            #101219
        );

    border: 1px solid #2b2e3a;
}

.contact-box h2 {
    max-width: 700px;

    margin: 0 auto 15px;

    font-size: 44px;

    line-height: 1.15;
}

.contact-box p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #858b9a;
}


/* =========================
   FOOTER
========================= */

footer {
    padding: 35px 0;

    background: #050609;

    border-top: 1px solid #20222b;
}

.footer-content {
    display: flex;

    align-items: center;
    justify-content: space-between;
}

.footer-content > span {
    color: #686e7c;

    font-size: 13px;
}


/* =========================
   ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .hero-content,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-visual {
        height: 400px;
    }

    .stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .values-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;

        top: 78px;
        left: 0;
        right: 0;

        display: none;

        padding: 20px;

        flex-direction: column;
        align-items: stretch;

        background: #0b0c11;

        border-bottom: 1px solid #272a35;
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 10px 0;
    }

    .nav-cta {
        text-align: center;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-visual {
        height: 350px;
    }

    .casino-logo {
        width: 210px;
        height: 210px;
    }

    .casino-logo strong {
        font-size: 36px;
    }

    .chip-one {
        left: 0;
    }

    .chip-two {
        right: 0;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading h2,
    .contact-box h2 {
        font-size: 34px;
    }

    .about-visual {
        height: 320px;
    }

    .about-circle {
        width: 170px;
        height: 170px;

        font-size: 50px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .responsible-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .footer-content {
        flex-direction: column;

        gap: 12px;

        text-align: center;
    }
}