      :root {
            --red: #f32d3d;
            --red-dark: #d91f32;
            --blue: #132d58;
            --blue-2: #0d2345;
            --text: #263957;
            --muted: #687892;
            --green: #20c879;
            --orange: #f5a623;
            --bg: #f7f9fc;
            --white: #fff;
            --border: #e8edf5;
            --shadow: 0 8px 28px rgba(24, 48, 88, .08);
            --shadow-hover: 0 14px 38px rgba(24, 48, 88, .14);
            --radius: 14px;
            --max: 1260px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.7;
            font-size: 15px;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

        .container {
            width: min(var(--max), calc(100% - 32px));
            margin: auto;
        }

        .btn {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            border-radius: 8px;
            text-decoration: none;
            border: 0;
            cursor: pointer;
            font-weight: 800;
            font-size: 14px;
            transition: .25s ease;
        }

        .btn-red {
            background: var(--red);
            color: #fff;
            box-shadow: 0 6px 18px rgba(243, 45, 61, .2);
        }

        .btn-red:hover {
            background: var(--red-dark);
            transform: translateY(-2px);
        }

        .btn-white {
            background: #fff;
            color: var(--blue);
            box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
        }

        /* =========================================================
   PREMIUM HERO SECTION
========================================================= */

        .hero {
            position: relative;
            overflow: hidden;
            color: #fff;

            background:
                radial-gradient(circle at 82% 48%,
                    rgba(255, 255, 255, 0.20) 0,
                    rgba(255, 255, 255, 0.06) 22%,
                    transparent 46%),
                linear-gradient(120deg,
                    #d91532 0%,
                    #ee2945 42%,
                    #fa4b62 72%,
                    #ff7284 100%);
        }


        /* Decorative background shapes */

        .hero-bg-shape {
            position: absolute;
            pointer-events: none;
            z-index: 0;
        }

        .hero-bg-shape-one {
            width: 620px;
            height: 620px;
            right: -250px;
            top: -330px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .16);
            box-shadow:
                0 0 0 70px rgba(255, 255, 255, .035),
                0 0 0 140px rgba(255, 255, 255, .025);
        }

        .hero-bg-shape-two {
            width: 420px;
            height: 420px;
            left: -280px;
            bottom: -300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .045);
        }


        /* Main hero container */

        .hero-inner {
            position: relative;
            z-index: 2;

            min-height: 500px;

            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);

            align-items: center;

            gap: 55px;

            padding-top: 42px;
            padding-bottom: 42px;
        }


        /* =========================================================
   LEFT SIDE
========================================================= */

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 690px;
        }


        /* Badge */

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            padding: 9px 15px;

            background: rgba(255, 255, 255, .96);
            color: #12345b;

            border-radius: 9px;

            font-size: 12px;
            font-weight: 800;

            margin-bottom: 18px;

            box-shadow:
                0 8px 25px rgba(90, 0, 20, .12);
        }

        .badge span:first-child {
            font-size: 14px;
        }


        /* Heading */

        .hero h1 {
            margin: 0 0 18px;

            max-width: 690px;

            color: #fff;

            font-size: clamp(38px, 4vw, 56px);
            line-height: 1.08;

            font-weight: 900;

            letter-spacing: -1.8px;

            text-shadow:
                0 3px 15px rgba(91, 0, 20, .10);
        }


        /* Description */

        .hero-description {
            max-width: 640px;

            margin: 0;

            color: rgba(255, 255, 255, .94);

            font-size: 16px;
            line-height: 1.7;

            font-weight: 500;
        }


        /* =========================================================
   BUTTONS
========================================================= */

        .hero-buttons {
            display: flex;
            align-items: center;
            flex-wrap: wrap;

            gap: 12px;

            margin-top: 27px;
            margin-bottom: 24px;
        }


        .hero-buttons .btn {
            min-height: 54px;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 0 21px;

            border-radius: 10px;

            font-size: 14px;
            font-weight: 800;

            text-decoration: none;

            transition:
                transform .25s ease,
                box-shadow .25s ease,
                background .25s ease;
        }


        /* First button */

        .hero-buttons .btn-red {
            color: #fff;
            background: rgb(19 33 75);
            border: 1px solid rgba(255, 255, 255, .12);
            box-shadow: 0 12px 25px rgba(120, 0, 20, .18);
        }

        .hero-buttons .btn-red:hover {
            transform: translateY(-3px);

            background: #c90d2f;

            box-shadow:
                0 16px 30px rgba(100, 0, 20, .25);
        }


        /* Second button */

        .hero-buttons .btn-white {
            color: #12345b;

            background: #fff;

            border: 1px solid rgba(255, 255, 255, .9);

            box-shadow:
                0 12px 25px rgba(90, 0, 20, .12);
        }

        .hero-buttons .btn-white:hover {
            transform: translateY(-3px);

            background: #f8fbff;

            box-shadow:
                0 16px 30px rgba(90, 0, 20, .20);
        }


        /* =========================================================
   CHECK LIST
========================================================= */

        .hero-checks {
            list-style: none;

            margin: 0;
            padding: 0;

            display: grid;

            grid-template-columns: repeat(2, minmax(0, 1fr));

            column-gap: 24px;
            row-gap: 10px;

            max-width: 620px;
        }


        .hero-checks li {
            position: relative;

            display: flex;
            align-items: center;

            min-height: 22px;

            color: #fff;

            font-size: 13px;
            line-height: 1.4;

            font-weight: 700;
        }


        /* Green check */

        .hero-checks li::before {
            content: "✓";

            flex: 0 0 21px;

            width: 21px;
            height: 21px;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            margin-right: 8px;

            background: #18ca79;

            color: #fff;

            border-radius: 50%;

            font-size: 11px;
            font-weight: 900;

            box-shadow:
                0 4px 10px rgba(0, 0, 0, .10);
        }


        /* Updated */

        .updated {
            display: flex;
            align-items: center;

            margin-top: 18px;

            color: rgba(255, 255, 255, .90);

            font-size: 11px;
            font-weight: 600;
        }


        /* =========================================================
   RIGHT IMAGE
========================================================= */

        .hero-visual {
            position: relative;

            min-height: 420px;

            display: flex;
            align-items: center;
            justify-content: center;
        }


        /* Image outer card */

        .hero-image-card {
            position: relative;

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

            padding: 13px;

            background: rgba(255, 255, 255, .16);

            border: 1px solid rgba(255, 255, 255, .30);

            border-radius: 18px;

            box-shadow:
                0 30px 65px rgba(86, 0, 20, .25),
                inset 0 1px 0 rgba(255, 255, 255, .35);

            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);

            transform: rotate(1deg);

            transition:
                transform .35s ease,
                box-shadow .35s ease;
        }


        .hero-image-card:hover {
            transform: rotate(0deg) translateY(-5px);

            box-shadow:
                0 38px 75px rgba(86, 0, 20, .30),
                inset 0 1px 0 rgba(255, 255, 255, .40);
        }


        /* Image */

        .hero-image-card img {
            position: relative;
            z-index: 2;

            display: block;

            width: 100%;
            height: auto;

            border-radius: 10px;

            box-shadow:
                0 12px 30px rgba(75, 0, 15, .18);
        }


        /* Glow behind image */

        .hero-image-glow {
            position: absolute;

            width: 72%;
            height: 72%;

            left: 14%;
            top: 14%;

            border-radius: 50%;

            background: rgba(255, 255, 255, .30);

            filter: blur(65px);

            z-index: 0;
        }


        /* =========================================================
   RESPONSIVE — TABLET
========================================================= */

        @media (max-width: 1000px) {

            .hero-inner {
                grid-template-columns: 1fr;

                gap: 35px;

                padding-top: 38px;
                padding-bottom: 45px;
            }

            .hero-content {
                max-width: 800px;
            }

            .hero h1 {
                max-width: 800px;
            }

            .hero-description {
                max-width: 720px;
            }

            .hero-visual {
                min-height: auto;
            }

            .hero-image-card {
                max-width: 650px;

                margin: 0 auto;
            }

        }


        /* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

        @media (max-width: 650px) {

            .hero-inner {
                gap: 28px;

                padding: 30px 18px 38px;
            }

            .badge {
                margin-bottom: 14px;

                padding: 8px 12px;

                font-size: 11px;
            }

            .hero h1 {
                font-size: 34px;

                line-height: 1.10;

                letter-spacing: -1px;

                margin-bottom: 15px;
            }

            .hero-description {
                font-size: 14px;

                line-height: 1.65;
            }

            .hero-buttons {
                flex-direction: column;

                align-items: stretch;

                gap: 10px;

                margin-top: 21px;
            }

            .hero-buttons .btn {
                width: 100%;

                min-height: 51px;

                padding: 0 14px;

                font-size: 13px;

                text-align: center;
            }

            .hero-checks {
                grid-template-columns: 1fr;

                row-gap: 9px;

                margin-top: 4px;
            }

            .hero-checks li {
                font-size: 12px;
            }

            .hero-visual {
                width: 100%;
            }

            .hero-image-card {
                width: 100%;

                padding: 8px;

                border-radius: 13px;

                transform: none;
            }

            .hero-image-card:hover {
                transform: none;
            }

            .hero-image-card img {
                border-radius: 7px;
            }

            .hero-bg-shape-one {
                width: 400px;
                height: 400px;

                right: -260px;
                top: -180px;
            }

        }

        .card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }

        .info-card {
            padding: 18px 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
            background: linear-gradient(180deg, #fff, #fbfdff);
        }

        .info-icon {
            min-width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #e9f1ff;
            color: #2164c6;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 22px;
            font-weight: 900;
        }

        .info-card p+p {
            margin-top: 8px;
        }

        .section-heading {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }

        .section-heading .icon {
            width: 30px;
            height: 30px;
            border-radius: 7px;
            background: var(--red);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
        }

        .section-heading h2,
        .section-heading h3 {
            color: var(--red);
            line-height: 1.3;
        }

        h2 {
            font-size: 25px;
            color: var(--blue);
            line-height: 1.3;
            margin-bottom: 12px;
        }

        h3 {
            font-size: 20px;
            color: var(--blue);
            line-height: 1.35;
            margin: 20px 0 10px;
        }

        p {
            margin-bottom: 12px;
        }

        .quick-card {
            padding: 18px;
        }

        .quick-layout {
            display: grid;
            gap: 20px;
        }

.quick-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0px !important;
}

        .quick-links li {
            border-bottom: 1px solid #edf1f7;
		background: radial-gradient(circle at 82% 48%,
                    rgba(255, 255, 255, 0.20) 0,
                    rgba(255, 255, 255, 0.06) 22%,
                    transparent 46%),
                linear-gradient(120deg,
                    #d91532 0%,
                    #ee2945 42%,
                    #fa4b62 72%,
                    #ff7284 100%);
			padding: 6px;
			border-radius: 5px;
        }

        .quick-links a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 5px;
            color: #fff;
            font-size: 15px;
            font-weight: 700;
            text-decoration: underline;
        }

        .quick-links a:after {
            content: "›";
            text-decoration: none;
            font-size: 18px;
            color: var(--red);
        }

      /* =========================
   GAME STATS CARDS
========================= */

.stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* =========================
   MAIN CARD
========================= */

.stat {
    position: relative;
    min-width: 0;
    height: 278px;
    overflow: hidden;
    border-radius: 15px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 0;
    color: #fff;

    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* =========================
   GAME 1 - WIN GO
========================= */

.stat:nth-child(1) {
    background-color: #ff666b;
    background-image: url("http://ok-w.in.net/wp-content/uploads/2026/09/wingo.webp");
}


/* =========================
   GAME 2 - LOTTERY
========================= */

.stat:nth-child(2) {
    background-color: #ffb52c;
    background-image: url("http://ok-w.in.net/wp-content/uploads/2026/09/lottery.webp");
}


/* =========================
   GAME 3 - TRX WIN
========================= */

.stat:nth-child(3) {
    background-color: #f45b61;
    background-image: url("http://ok-w.in.net/wp-content/uploads/2026/09/txtwin.webp");
}


/* =========================
   GAME 4 - 5D
========================= */

.stat:nth-child(4) {
    background-color: #38c5a7;
    background-image: url("http://ok-w.in.net/wp-content/uploads/2026/09/5d.webp");
}


/* =========================
   GAME 5 - K3
========================= */

.stat:nth-child(5) {
    background-color: #df5962;
    background-image: url("http://ok-w.in.net/wp-content/uploads/2026/09/k3.webp");
}


/* =========================
   GAME 6 - MOTORACE
========================= */

.stat:nth-child(6) {
    background-color: #f4a332;
    background-image: url("http://ok-w.in.net/wp-content/uploads/2026/09/motorace.webp");
}


/* =========================
   DARK BOTTOM AREA
========================= */

.stat::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 94px;

    background: #292929;

    z-index: 1;
}


/* =========================
   GAME TITLE
========================= */

.stat strong {
    position: relative;
    z-index: 2;

    display: block;

    padding: 0 15px;
    margin: 0 0 12px;

    color: #fff;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}


/* =========================
   GAME NUMBER
========================= */

.stat span {
    position: relative;
    z-index: 2;

    display: block;

    padding: 0 15px 16px;

    color: #fff;

    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}


/* =========================
   SMALL SQUARE
========================= */

.stat span::before {
    content: "";

    display: inline-block;

    width: 15px;
    height: 15px;

    margin-right: 5px;

    background: #ffd9dc;
    border-radius: 3px;

    vertical-align: -2px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1200px) {

    .stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stat {
        height: 220px;
        border-radius: 12px;
    }

    .stat::before {
        height: 78px;
    }

    .stat strong {
        padding: 0 12px;
        margin-bottom: 9px;

        font-size: 16px;
    }

    .stat span {
        padding: 0 12px 13px;

        font-size: 14px;
    }

    .stat span::before {
        width: 13px;
        height: 13px;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .stats {
        gap: 10px;
    }

    .stat {
        height: 200px;
        border-radius: 10px;
    }

    .stat::before {
        height: 72px;
    }

    .stat strong {
        font-size: 15px;
    }

    .stat span {
        font-size: 13px;
    }

}

        .content-card {
            padding: 24px;
        }

        .intro-layout {
            display: grid;
            grid-template-columns: 330px 1fr;
            gap: 24px;
            align-items: start;
        }

        .content-image {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 12px 28px rgba(18, 43, 80, .16);
            border: 1px solid #e7ecf3;
        }

        .gift-box {
            border: 1px solid #ffd7dc;
            background: #fff9fa;
            border-radius: 10px;
            padding: 17px;
            margin-top: 17px;
        }

        .gift-box h3 {
            margin: 0 0 5px;
            color: var(--red);
            font-size: 24px;
        }

        .gift-code {
            margin-top: 12px;
            background: #fff;
            border: 1px dashed #ff7180;
            color: var(--red);
            border-radius: 8px;
            padding: 12px;
            font-weight: 900;
            text-align: center;
            word-break: break-all;
            font-size: 13px;
        }

        .spec-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 13px;
        }

        .spec-table td {
            border-bottom: 1px solid #edf1f5;
            padding: 8px 9px;
            vertical-align: top;
        }

        .spec-table td:first-child {
            width: 42%;
            font-weight: 800;
            color: var(--blue);
        }

        .spec-table a {
            color: #2762a2;
        }

        .features-card {
            padding: 22px;
        }

        .feature-intro {
            color: var(--muted);
            margin-bottom: 17px;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .feature {
            border: 1px solid #f32d3d;
            border-radius: 10px;
            padding: 17px;
            background: #fff;
            min-height: 155px;
            box-shadow: 0 4px 14px rgba(20, 44, 80, .04);
        }

        .feature-icon {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #edf3ff;
            color: #2c65bb;
            font-size: 18px;
            margin-bottom: 9px;
        }

        .feature:nth-child(1) .feature-icon,
        .feature:nth-child(3) .feature-icon {
            background: #fff0f2;
            color: var(--red);
        }

        .feature:nth-child(2) .feature-icon,
        .feature:nth-child(4) .feature-icon {
            background: #fff6df;
            color: #e59816;
        }

        .feature:nth-child(5) .feature-icon {
            background: #e9f2ff;
            color: #2672cc;
        }

        .feature:nth-child(6) .feature-icon {
            background: #eafff6;
            color: #13b574;
        }

        .feature strong {
            color: var(--blue);
            display: block;
            font-size: 13px;
            margin-bottom: 6px;
        }

        .feature p {
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
        }

        .step-section {
            padding: 22px;
        }

        .step-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .step-card {
            display: grid;
            gap: 20px;
            border: 1px solid #e8edf4;
            border-radius: 12px;
            padding: 18px;
            background: #fff;
        }

        .step-content {
            min-width: 0;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--red);
            font-weight: 900;
            font-size: 16px;
            margin-bottom: 7px;
        }

        .step-number:before {
            content: "";
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--red);
            box-shadow: 0 5px 12px rgba(243, 45, 61, .2);
        }

        .step-card p {
            color: var(--muted);
            font-size: 14px;
        }

        .step-image {
            align-self: center;
        }

        .step-image img {
            width: 350px;
            border-radius: 9px;
            box-shadow: 0 10px 25px rgba(18, 43, 80, .13);
            border: 1px solid #fc8078;
            margin: auto;
            padding: 12px;
        }

        .no-image-step {
            border-left: 3px solid #f0d4d8;
            padding-left: 15px;
        }

        .check-list,
        .number-list,
        .normal-list {
            padding-left: 0;
            list-style: none;
        }

        .check-list li,
        .number-list li,
        .normal-list li {
            margin: 8px 0;
        }

        .check-list li:before {
            content: "✓";
            color: #18b875;
            font-weight: 900;
            margin-right: 9px;
        }

        .simple-list li {
            margin: 8px 0;
        }

        .simple-list {
            padding-left: 22px;
        }

        .download-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            background: linear-gradient(110deg, #fef1f3, #fff);
            border: 1px solid #ffd9de;
            padding: 20px;
            border-radius: 12px;
            margin-top: 15px;
        }

        .deposit-grid,
        .withdraw-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .info-small {
            background: #f7faff;
            border: 1px solid #e3ebf8;
            border-radius: 11px;
            padding: 20px;
        }

        .bullet-list {
            padding-left: 20px;
        }

        .bullet-list li {
            margin: 8px 0;
        }

        .game-list {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .game-card {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 22px;
            align-items: center;
            padding: 18px;
            border: 1px solid #e6ebf2;
            border-radius: 12px;
            background: #fff;
        }

        .game-card img {
            width: 100%;
            border-radius: 9px;
            box-shadow: 0 10px 24px rgba(18, 43, 80, .13);
        }

        .game-card strong {
            color: var(--blue);
        }

        .tip-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .tip {
            padding: 15px;
            border: 1px solid #e8edf4;
            border-radius: 10px;
            background: #fff;
        }

        .tip strong {
            color: var(--blue);
        }

        .responsible {
            border: 1px solid #ffc7ce;
            background: #fff7f8;
        }

        .support-method {
            border: 1px solid #e5ebf3;
            border-radius: 11px;
            padding: 20px;
            margin-top: 16px;
        }

        .support-method .support-image {
            max-width: 430px;
            margin-top: 15px;
        }

        .support-image img {
            width: 100%;
            border-radius: 9px;
            box-shadow: 0 10px 25px rgba(18, 43, 80, .13);
        }

        .content-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 15px;
        }

        .content-info div {
            background: #f8faff;
            border: 1px solid #e7edf7;
            border-radius: 8px;
            padding: 10px 13px;
        }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 13px;
        }

        .guide-card {
            border: 1px solid #e5ebf3;
            border-radius: 11px;
            padding: 18px;
            background: #fff;
            transition: .25s;
        }

        .guide-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .guide-card h3 {
            font-size: 16px;
            margin: 0 0 7px;
        }

        .guide-card p {
            font-size: 13px;
            color: var(--muted);
        }

        .guide-card a {
            display: inline-block;
            color: var(--red);
            font-weight: 800;
            font-size: 13px;
            margin-top: 4px;
        }

        .faq {
            padding: 20px;
        }

        .faq-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px 14px;
        }

        .faq-item {
            border: 1px solid #e4ebf3;
            border-radius: 7px;
            overflow: hidden;
            background: #fff;
        }

        .faq-question {
            width: 100%;
            margin: 0;
            padding: 10px 13px;
            background: #fff;
            color: #000;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            font-size: 17px;
            line-height: 1.45;
            font-weight: 700;
            cursor: pointer;
            user-select: none;
            box-sizing: border-box;
        }

        .faq-question:hover {
            background: #fff8f9;
        }

        .faq-question:focus {
            outline: 2px solid rgba(225, 29, 55, 0.2);
            outline-offset: -2px;
        }

        .faq-plus {
            flex: 0 0 auto;
            color: var(--red, #e11d37);
            font-size: 20px;
            line-height: 1;
            font-weight: 900;
            transition: transform 0.25s ease;
        }

        .faq-answer {
            display: none;
            padding: 0 13px 13px;
            color: var(--muted, #64748b);
            font-size: 13px;
            line-height: 1.65;
            background: #fff;
        }

        .faq-item.open .faq-answer {
            display: block;
        }

        .faq-item.open .faq-plus {
            transform: rotate(45deg);
        }

        .notice {
            margin-top: 20px;
            border: 1px solid #ffb9c1;
            background: #fff6f7;
            border-radius: 10px;
            padding: 18px;
        }

        .notice-title {
            color: var(--red, #e11d37);
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 7px;
        }

        .notice p {
            margin: 8px 0;
        }

        @media (max-width: 768px) {
            .faq-list {
                grid-template-columns: 1fr;
            }

            .faq {
                padding: 15px;
            }

            .faq-question {
                font-size: 14px;
            }
        }

        .footer {
            background: var(--red-dark);
            color: #fff;
            padding: 35px 0 25px;
        }

    .footer-grid {
    gap: 30px;
    display: flex;
    justify-content: center;
}

        .footer .logo {
            color: #fff;
        }

        .footer .logo-win {
            color: #fff;
        }

        .footer-copy {
            color: rgba(255, 255, 255, .72);
            font-size: 15px;
            margin-top: 10px;
        }

        .footer-links {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 0;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            padding: 0 15px;
            border-right: 1px solid rgba(255, 255, 255, .28);
        }

        .footer-links a:last-child {
            border-right: 0;
        }

        .footer-links a:hover {
            color: #000;
        }

     .footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #fff;
    font-size: 15px;
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 7px;
}
        @media(max-width:1000px) {
            .nav {
                gap: 14px;
            }

            .header-inner {
                gap: 15px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .quick-layout {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:800px) {
            .top-left {
                display: none;
            }

            .topbar-inner {
                justify-content: flex-end;
            }

            .nav {
                display: none;
            }

            .hero-inner,
            .intro-layout,
            .two-col,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-inner {
                padding: 10px 0 25px;
            }

            .hero-content {
                padding-bottom: 0;
            }

            .hero h1 {
                font-size: 30px;
            }

            .hero-visual {
                min-height: auto;
            }

            .hero-visual img {
                max-height: 270px;
            }

            .feature-grid,
            .guide-grid {
                grid-template-columns: 1fr 1fr;
            }

            .step-card {
                grid-template-columns: 1fr;
            }

            .step-image {
                max-width: 500px;
            }

            .game-card {
                grid-template-columns: 1fr;
            }

            .game-card img {
                max-width: 380px;
            }

            .faq-list {
                grid-template-columns: 1fr;
            }

            .footer-links {
                justify-content: flex-start;
            }
        }

        @media(max-width:560px) {
            body {
                font-size: 14px;
            }

            .container {
                width: min(var(--max), calc(100% - 20px));
            }

            .top-right {
                gap: 10px;
            }

            .top-item+.top-item {
                padding-left: 10px;
            }

            .header-inner {
                min-height: 62px;
            }

            .logo {
                font-size: 23px;
            }

            .search-btn {
                display: none;
            }

            .header-actions .btn {
                padding: 9px 13px;
                font-size: 12px;
            }

            .hero h1 {
                font-size: 27px;
            }

            .hero-checks {
                grid-template-columns: 1fr;
            }

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

            .stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .content-card,
            .features-card,
            .step-section,
            .faq,
            .quick-card {
                padding: 15px;
            }

            .feature-grid,
            .guide-grid,
            .tip-grid {
                grid-template-columns: 1fr;
            }

            .content-info {
                grid-template-columns: 1fr;
            }

            .download-box {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer-links a {
                padding: 5px 10px;
            }
        }
footer#colophon {
    display: none;
}
      .responsible-gaming-page {
            width: 100%;
        }

        /* =========================
           TOP BACKGROUND
        ========================= */

 .rg-top {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.16), transparent 28%), linear-gradient(120deg, #e80f38 0%, #f51f46 48%, #ff6478 100%);
    padding: 70px 20px 100px;
}

        .rg-top::before {
            content: "";
            position: absolute;
            width: 500px;
            height: 500px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 50%;
            top: -300px;
            right: -100px;
        }

        .rg-top::after {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border: 1px solid rgba(255, 255, 255, 0.10);
            border-radius: 50%;
            bottom: -320px;
            left: -180px;
        }

        .rg-top-inner {
            position: relative;
            z-index: 2;
            max-width: 1120px;
            margin: 0 auto;
        }

        .rg-top h1 {
            margin: 0;
            color: #ffffff;
            font-size: clamp(42px, 6vw, 72px);
            line-height: 1.05;
            font-weight: 900;
            letter-spacing: -2px;
        }

        /* =========================
           CONTENT CONTAINER
        ========================= */

        .rg-content-wrap {
            position: relative;
            z-index: 5;
            max-width: 1150px;
            margin: -85px auto 70px;
            padding: 0 20px;
        }

        .rg-content {
            background: #ffffff;
            border: 1px solid #eceef3;
            border-radius: 22px;
            padding: 48px 55px;
            box-shadow: 0 18px 55px rgba(23, 36, 60, 0.10);
        }

        .rg-content>p:first-child {
            margin-top: 0;
        }

        p {
            margin: 0 0 20px;
            font-size: 15px;
            color: #4b5567;
        }

        a {
            color: #ed143d;
            font-weight: 700;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        /* =========================
           HEADINGS
        ========================= */

        h2 {
            position: relative;
            margin: 18px 0 18px;
            padding-left: 17px;
            color: #17243c;
            font-size: 28px;
            line-height: 1.3;
            font-weight: 900;
        }

        h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 5px;
            height: calc(100% - 8px);
            border-radius: 10px;
            background: linear-gradient(180deg,
                    #ed143d,
                    #ff6478);
        }

        /* =========================
           LISTS
        ========================= */

       .rg-content ul {
            margin: 12px 0 22px;
            padding: 0;
            list-style: none;
        }

        .rg-content li {
            position: relative;
            margin: 10px 0;
            padding: 14px 18px 14px 47px;
            border-radius: 10px;
            background: #fafbfc;
            color: #4b5567;
            font-size: 14px;
        }

        .rg-content li::before {
            content: "✓";
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            width: 23px;
            height: 23px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: #20d48a;
            color: #ffffff;
            font-size: 12px;
            font-weight: 900;
        }

        /* =========================
           SPECIAL 18+ SECTION
        ========================= */

        h2:nth-of-type(3) {
            margin-top: 48px;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 768px) {

            .rg-top {
                padding: 50px 18px 115px;
            }

            .rg-top h1 {
                font-size: 42px;
                letter-spacing: -1px;
            }

            .rg-content-wrap {
                margin-top: -65px;
                padding: 0 14px;
            }

            .rg-content {
                padding: 32px 24px;
                border-radius: 17px;
            }

            h2 {
                font-size: 23px;
                margin-top: 36px;
            }

            p {
                font-size: 14px;
                line-height: 1.75;
            }

            li {
                font-size: 13px;
                padding: 13px 14px 13px 43px;
            }
        }

        @media (max-width: 480px) {

            .rg-top {
                padding: 42px 15px 100px;
            }

            .rg-top h1 {
                font-size: 35px;
            }

            .rg-content-wrap {
                margin-top: -55px;
                padding: 0 10px;
            }

            .rg-content {
                padding: 27px 18px;
                border-radius: 15px;
            }

            h2 {
                font-size: 21px;
                padding-left: 14px;
            }

            h2::before {
                width: 4px;
            }

            p {
                font-size: 14px;
            }

            li {
                padding-left: 40px;
            }
        }
.ast-desktop .main-header-menu.ast-menu-shadow .sub-menu {
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, .1);
    background: #000;
}
.ast-desktop .main-header-menu.ast-menu-shadow .sub-menu li{
   border-bottom: 1px solid red;
}