/* =========================
   RESET
========================= */

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

/* =========================
   BODY
========================= */

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;

    width: 100%;

    background: #cbcbcb;

    border-bottom:
        1px solid rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(10px);
}

.navbar-wrapper {
    min-height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* LOGO */

.logo {
    color: #4c2b10;

    text-decoration: none;

    font-size: 28px;
    font-weight: 800;
}

/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;

    color: #4c2b10;

    text-decoration: none;

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

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #d89b22;
}

/* BUTTON */

.btn-primary {
    height: 46px;

    padding: 0 24px;

    border-radius: 12px;

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

    background:
        linear-gradient(to bottom,
            #6d3d17,
            #4c2b10);

    color: white;

    text-decoration: none;

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

    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

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

.hero-section {
    position: relative;

    width: 100%;
    height: 60vh;

    overflow: hidden;

    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* HERO CONTENT */

.hero-container {
    position: relative;
    z-index: 5;

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

    margin: auto;

    padding: 0 7%;
}

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

.hero-subtitle {
    display: inline-block;

    margin-bottom: 14px;

    color: #ffcb66;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.hero-title {
    margin-bottom: 20px;

    font-size: 78px;
    line-height: 0.95;
    font-weight: 900;

    text-transform: uppercase;

    color: white;

    text-shadow:
        0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    background:
        linear-gradient(to bottom,
            #fff2be,
            #ffc53f,
            #d98a00);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
    line-height: 1.8;
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-btn {
    height: 52px;

    padding: 0 28px;

    border-radius: 14px;

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

    text-decoration: none;

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

    transition: 0.3s ease;
}

.hero-primary {
    background:
        linear-gradient(to bottom,
            #ffd978,
            #d89b22);

    color: #3c250f;
}

.hero-secondary {
    border:
        1px solid rgba(255, 255, 255, 0.14);

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);

    color: white;
}

/* =========================
   LIVE WITHDRAW
========================= */

.live-withdraw {
    position: relative;
    z-index: 10;

    width: 100%;

    margin-top: -20px;

    padding: 28px 55px;

    background: #4c2b10;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

/* LEFT */

.withdraw-left {
    flex: 1;
}

.withdraw-label {
    display: inline-block;

    margin-bottom: 10px;

    color: #ffd06d;

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

    letter-spacing: 2px;

    text-transform: uppercase;
}

.withdraw-amount {
    margin-bottom: 12px;

    font-size: 58px;
    line-height: 1;
    font-weight: 900;
}

.withdraw-amount span {
    background:
        linear-gradient(to bottom,
            #fff0bb,
            #ffcb54,
            #d68b00);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.withdraw-description {
    color:
        rgba(255, 255, 255, 0.75);

    font-size: 15px;
}

/* RIGHT */

.withdraw-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.withdraw-box {
    min-width: 190px;

    padding: 20px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid rgba(255, 255, 255, 0.05);

    text-align: center;
}

.withdraw-box-title {
    display: block;

    margin-bottom: 10px;

    color: #ffcf73;

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

    letter-spacing: 1px;
}

.withdraw-box strong {
    font-size: 28px;
    color: white;
}

/* =========================
   PREMIUM GAMES
========================= */

.premium-games {
    width: 100%;

    padding: 40px 4% 80px;

    background:
        linear-gradient(to bottom,
            #4c2b10,
            #2b1407);
}

/* HEADER */

.premium-header {
    margin-bottom: 34px;

    text-align: center;
}

.premium-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: #ffcf73;

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

    letter-spacing: 2px;

    text-transform: uppercase;
}

.premium-title {
    color: white;

    font-size: 34px;
    font-weight: 900;
}

/* GRID */

.premium-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}

/* CARD */

.premium-card {
    overflow: hidden;

    border-radius: 18px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border:
        1px solid rgba(255, 255, 255, 0.06);

    transition: 0.3s ease;
}

.premium-card:hover {
    transform: translateY(-5px);

    border-color:
        rgba(255, 210, 120, 0.22);
}

/* IMAGE */

.premium-image {
    position: relative;

    width: 100%;
    height: 180px;

    overflow: hidden;
}

.premium-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.4s ease;
}

.premium-card:hover .premium-image img {
    transform: scale(1.06);
}

/* BADGE */

.premium-badge {
    position: absolute;
    top: 14px;
    left: 14px;

    height: 36px;

    padding: 0 16px;

    border-radius: 999px;

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

    background:
        linear-gradient(to bottom,
            #ffdb84,
            #d89a21);

    color: #3b250f;

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

.premium-badge.live {
    background:
        linear-gradient(to bottom,
            #ff6767,
            #d91f1f);

    color: white;
}

/* CONTENT */

.premium-content {
    padding: 18px;
}

.premium-content h3 {
    margin-bottom: 18px;

    color: white;

    font-size: 18px;
    font-weight: 700;
}

/* BUTTON */

.premium-btn {
    width: 100%;
    height: 46px;

    border-radius: 12px;

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

    background:
        linear-gradient(to bottom,
            #ffe08c,
            #dca42a);

    color: #3b250f;

    text-decoration: none;

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

    transition: 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   REWARD SECTION
========================= */

.reward-section {

    width: 100%;

    padding: 90px 7%;

    background:
        linear-gradient(to bottom,
            #4c2b10,
            #2d1608);
}

/* =========================
   HEADER
========================= */

.reward-header {

    margin-bottom: 55px;

    text-align: center;
}

.reward-subtitle {

    display: inline-block;

    margin-bottom: 12px;

    color: #ffcb70;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.reward-title {

    margin-bottom: 16px;

    color: white;

    font-size: 48px;
    font-weight: 900;
}

.reward-description {

    max-width: 700px;

    margin: auto;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   WRAPPER
========================= */

.reward-wrapper {
    display: grid;
    grid-template-columns:
        1.1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* =========================
   SAME HEIGHT
========================= */

.reward-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.reward-feature {
    min-height: 100%;
}

.reward-item {
    flex: 1;
}

/* =========================
   FEATURE CARD
========================= */

.reward-feature {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 34px;
    background:
        linear-gradient(180deg,
            #7a4217,
            #4c240a);
    border:
        1px solid rgba(255, 220, 120, 0.12);
}

/* BADGE */

.reward-badge {

    position: absolute;
    top: 24px;
    left: 24px;

    height: 40px;

    padding: 0 18px;

    border-radius: 999px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(to bottom,
            #ffe18f,
            #d89b22);

    color: #3b250f;

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

    letter-spacing: 1px;
}

/* IMAGE */

.reward-feature-image {

    width: 100%;
    height: 320px;

    border-radius: 22px;

    overflow: hidden;

    margin-bottom: 28px;
}

.reward-feature-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* CONTENT */

.reward-feature-content h3 {

    margin-bottom: 14px;

    color: white;

    font-size: 34px;
    font-weight: 900;
}

.reward-feature-content p {

    margin-bottom: 28px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 16px;
    line-height: 1.8;
}

/* META */

.reward-meta {

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border-radius: 18px;

    background:
        rgba(255, 255, 255, 0.05);

    border:
        1px solid rgba(255, 255, 255, 0.05);
}

.reward-meta span {

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 14px;
}

.reward-meta strong {

    color: #ffd978;

    font-size: 26px;
}

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

.reward-list {

    display: flex;
    flex-direction: column;

    gap: 20px;
}

/* ITEM */

.reward-item {

    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 22px;

    border-radius: 24px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border:
        1px solid rgba(255, 255, 255, 0.06);

    overflow: hidden;

    transition: 0.3s ease;
}

/* PURPLE CARD */

.reward-item.purple {

    background:
        linear-gradient(135deg,
            #5e2f7f,
            #311348);
}

/* HOVER */

.reward-item:hover {

    transform: translateY(-4px);
}

/* IMAGE */

.reward-item-image {

    width: 90px;
    height: 90px;

    border-radius: 18px;

    overflow: hidden;

    flex-shrink: 0;
}

.reward-item-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* CONTENT */

.reward-item-content h4 {

    margin-bottom: 8px;

    color: white;

    font-size: 22px;
    font-weight: 800;
}

.reward-item-content p {

    color:
        rgba(255, 255, 255, 0.7);

    font-size: 14px;
    line-height: 1.7;
}

/* TAG */

.reward-item-tag {

    position: absolute;
    top: 18px;
    right: 18px;

    height: 34px;

    padding: 0 14px;

    border-radius: 999px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(to bottom,
            #ffe08b,
            #dca42a);

    color: #3b250f;

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

.reward-item-tag.live {

    background:
        linear-gradient(to bottom,
            #ff6767,
            #d91f1f);

    color: white;
}

/* =========================

   PREMIUM FOOTER

========================= */

.casino-footer {

    position: relative;

    overflow: hidden;

    width: 100%;

    padding: 80px 7% 30px;

    background:

        radial-gradient(circle at top,

            rgba(255, 190, 60, 0.08),

            transparent 35%),

        linear-gradient(to bottom,

            #140904,

            #090402);

    border-top:

        1px solid rgba(255, 255, 255, 0.06);

}

/* =========================

   TOP

========================= */

.footer-top {

    display: grid;

    grid-template-columns:

        1.4fr 1fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 50px;

    border-bottom:

        1px solid rgba(255, 255, 255, 0.06);

}

/* =========================

   BRAND

========================= */

.footer-logo {

    display: inline-block;

    margin-bottom: 18px;

    text-decoration: none;

    font-size: 38px;

    font-weight: 900;

    letter-spacing: 1px;

    background:

        linear-gradient(to bottom,

            #fff2be,

            #ffc53f,

            #d98a00);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.footer-description {

    max-width: 360px;

    margin-bottom: 28px;

    color:

        rgba(255, 255, 255, 0.68);

    font-size: 15px;

    line-height: 1.8;

}

/* =========================

   SOCIAL

========================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 14px;

}

.footer-social a {

    width: 44px;

    height: 44px;

    border-radius: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        rgba(255, 255, 255, 0.05);

    border:

        1px solid rgba(255, 255, 255, 0.06);

    color: white;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: 0.3s ease;

}

.footer-social a:hover {

    transform: translateY(-3px);

    border-color:

        rgba(255, 210, 120, 0.3);

    background:

        rgba(255, 210, 120, 0.08);

}

/* =========================

   COLUMN

========================= */

.footer-column h4 {

    margin-bottom: 20px;

    color: white;

    font-size: 18px;

    font-weight: 800;

}

.footer-column a {

    display: block;

    margin-bottom: 14px;

    color:

        rgba(255, 255, 255, 0.68);

    text-decoration: none;

    font-size: 14px;

    transition: 0.3s ease;

}

.footer-column a:hover {

    color: #ffd978;

}

/* =========================

   MIDDLE

========================= */

.footer-middle {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    padding: 38px 0;

}

/* BADGE */

.footer-badge {

    height: 52px;

    padding: 0 22px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        rgba(255, 255, 255, 0.04);

    border:

        1px solid rgba(255, 255, 255, 0.06);

    color: white;

    font-size: 14px;

    font-weight: 700;

}

/* =========================

   PAYMENT

========================= */

.footer-payment {

    padding-bottom: 40px;

    text-align: center;

}

.footer-payment span {

    display: inline-block;

    margin-bottom: 22px;

    color:

        rgba(255, 255, 255, 0.6);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}

/* LIST */

.footer-payment-list {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 16px;

}

/* ITEM */

.payment-item {

    min-width: 100px;

    height: 52px;

    padding: 0 20px;

    border-radius: 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        rgba(255, 255, 255, 0.05);

    border:

        1px solid rgba(255, 255, 255, 0.06);

    color: white;

    font-size: 14px;

    font-weight: 800;

    transition: 0.3s ease;

}

.payment-item:hover {

    transform: translateY(-3px);

    border-color:

        rgba(255, 210, 120, 0.25);

}

/* =========================

   BOTTOM

========================= */

.footer-bottom {

    padding-top: 30px;

    border-top:

        1px solid rgba(255, 255, 255, 0.06);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.footer-bottom p {

    color:

        rgba(255, 255, 255, 0.5);

    font-size: 13px;

}

/* LINKS */

.footer-bottom-links {

    display: flex;

    align-items: center;

    gap: 20px;

}

.footer-bottom-links a {

    color:

        rgba(255, 255, 255, 0.5);

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s ease;

}

.footer-bottom-links a:hover {

    color: #ffd978;

}

D
/* =========================
   WINNER SECTION
========================= */

.winner-section {
    width: 100%;
    padding: 100px 0;
    background:
        radial-gradient(circle at top,
            rgba(255, 180, 60, 0.08),
            transparent 40%),
        linear-gradient(to bottom,
            #2b1407,
            #140904);
}

/* =========================
   HEADER
========================= */

.winner-header {

    margin-bottom: 50px;

    text-align: center;
}

.winner-subtitle {

    display: inline-block;

    margin-bottom: 12px;

    color: #ffcb70;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.winner-title {

    color: white;

    font-size: 48px;
    font-weight: 900;
}

/* =========================
   WRAPPER
========================= */

.winner-wrapper {

    display: grid;

    grid-template-columns:
        1.1fr 1fr;

    gap: 28px;

    align-items: stretch;
}

/* =========================
   FEATURE
========================= */

.winner-feature {

    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02));

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);
}

/* =========================
   LIVE BADGE
========================= */

.winner-live {

    position: absolute;
    top: 24px;
    left: 24px;

    z-index: 5;

    height: 42px;

    padding: 0 18px;

    border-radius: 999px;

    display: flex;
    align-items: center;
    gap: 10px;

    background:
        rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(10px);

    color: white;

    font-size: 13px;
    font-weight: 700;
}

/* =========================
   LIVE DOT
========================= */

.winner-dot {

    width: 10px;
    height: 10px;

    border-radius: 999px;

    background: #ff3b3b;

    animation: pulse 1s infinite;
}

@keyframes pulse {

    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }

}

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

.winner-feature-image {

    width: 100%;
    height: 420px;

    overflow: hidden;
}

.winner-feature-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

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

.winner-feature-content {

    padding: 30px;
}

.winner-game {

    display: inline-block;

    margin-bottom: 14px;

    color: #ffcb70;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.winner-feature-content h3 {

    margin-bottom: 16px;

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

    line-height: 1;

    background:
        linear-gradient(to bottom,
            #fff2be,
            #ffc53f,
            #d98a00);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.winner-feature-content p {

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 15px;
    line-height: 1.8;
}

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

.winner-list {

    display: flex;
    flex-direction: column;

    gap: 18px;
}

/* =========================
   ITEM
========================= */

.winner-item {

    flex: 1;

    padding: 24px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02));

    border:
        1px solid rgba(255, 255, 255, 0.06);

    transition: 0.3s ease;
}

.winner-item:hover {

    transform: translateY(-4px);

    border-color:
        rgba(255, 210, 120, 0.25);
}

/* =========================
   USER
========================= */

.winner-user {

    display: flex;
    align-items: center;

    gap: 16px;
}

/* =========================
   AVATAR
========================= */

.winner-avatar {

    width: 58px;
    height: 58px;

    border-radius: 18px;

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

    background:
        linear-gradient(to bottom,
            #ffdf89,
            #d89a21);

    color: #3b250f;

    font-size: 22px;
    font-weight: 900;
}

/* =========================
   USER INFO
========================= */

.winner-user-info strong {

    display: block;

    margin-bottom: 6px;

    color: white;

    font-size: 18px;
}

.winner-user-info span {

    color:
        rgba(255, 255, 255, 0.6);

    font-size: 13px;
}

/* =========================
   PRICE
========================= */

.winner-price {

    color: #ffd978;

    font-size: 24px;
    font-weight: 900;
}

/* =========================

   JACKPOT SECTION

========================= */

.jackpot-section {

    position: relative;

    width: 100%;

    padding: 100px 7%;

    overflow: hidden;

    background:

        radial-gradient(circle at top,

            rgba(255, 190, 60, 0.12),

            transparent 35%),

        linear-gradient(to bottom,

            #4c2b10,

            #1b0c04);

}

/* =========================

   TOP

========================= */

.jackpot-top {

    margin-bottom: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.jackpot-subtitle {

    display: inline-block;

    margin-bottom: 12px;

    color: #ffcb70;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.jackpot-title {

    color: white;

    font-size: 48px;

    font-weight: 900;

}

/* =========================

   LIVE STATUS

========================= */

.jackpot-live-status {

    height: 46px;

    padding: 0 18px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:

        rgba(255, 255, 255, 0.06);

    border:

        1px solid rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 13px;

    font-weight: 700;

}

/* DOT */

.jackpot-live-dot {

    width: 10px;

    height: 10px;

    border-radius: 999px;

    background: #ff3b3b;

    animation: jackpotPulse 1s infinite;

}

@keyframes jackpotPulse {

    0% {

        opacity: 1;

    }

    50% {

        opacity: 0.3;

    }

    100% {

        opacity: 1;

    }

}

/* =========================

   GRID

========================= */

.jackpot-grid {

    display: grid;

    grid-template-columns:

        1.2fr 1fr 1fr;

    gap: 22px;

    margin-bottom: 28px;

}

/* =========================

   CARD

========================= */

.jackpot-card {

    position: relative;

    overflow: hidden;

    padding: 34px;

    border-radius: 30px;

    background:

        linear-gradient(180deg,

            rgba(255, 255, 255, 0.06),

            rgba(255, 255, 255, 0.02));

    border:

        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    box-shadow:

        0 18px 40px rgba(0, 0, 0, 0.28);

}

/* GRAND */

.jackpot-card.grand {

    background:

        radial-gradient(circle at top,

            rgba(255, 200, 80, 0.18),

            transparent 45%),

        linear-gradient(180deg,

            #6d3a12,

            #3b1c08);

}

/* MINI */

.jackpot-card.mini {

    background:

        radial-gradient(circle at top,

            rgba(255, 180, 60, 0.12),

            transparent 45%),

        linear-gradient(180deg,

            #4f260d,

            #2a1306);

}

/* =========================

   LABEL

========================= */

.jackpot-label {

    display: inline-block;

    margin-bottom: 18px;

    color: #ffcb70;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

/* =========================

   AMOUNT

========================= */

.jackpot-card h3 {

    margin-bottom: 20px;

    font-size: 56px;

    line-height: 1;

    font-weight: 900;

    background:

        linear-gradient(to bottom,

            #fff2be,

            #ffc53f,

            #d98a00);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.jackpot-card p {

    color:

        rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.8;

}

/* =========================

   MEMBER LIST

========================= */

.jackpot-member-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.jackpot-member-item {

    padding: 18px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    background:

        rgba(255, 255, 255, 0.04);

    border:

        1px solid rgba(255, 255, 255, 0.05);

}

.jackpot-member-item strong {

    color: white;

    font-size: 16px;

}

.jackpot-member-item span {

    color: #ffd978;

    font-size: 18px;

    font-weight: 800;

}

/* =========================

   TICKER

========================= */

.jackpot-ticker {

    position: relative;

    overflow: hidden;

    height: 62px;

    border-radius: 18px;

    background:

        rgba(255, 255, 255, 0.05);

    border:

        1px solid rgba(255, 255, 255, 0.06);

    display: flex;

    align-items: center;

}

.jackpot-ticker-track {
    white-space: nowrap;
    color: #ffd978;
    font-size: 15px;
    font-weight: 700;
    padding-left: 100%;
    animation:
        tickerMove 28s linear infinite;
}

@keyframes tickerMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }

}

/* =========================

   RTP HERO

========================= */

.rtp-hero {

    position: relative;

    width: 100%;

    min-height: 420px;

    overflow: hidden;

    display: flex;

    align-items: center;

}

/* BACKGROUND */

.rtp-hero-bg {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

}

/* OVERLAY */

.rtp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.84));
    z-index: 1;

}

/* CONTENT */

.rtp-hero-content {

    position: relative;

    z-index: 5;

    max-width: 680px;

}

/* SUBTITLE */

.rtp-hero-subtitle {

    display: inline-block;

    margin-bottom: 16px;

    color: #ffcb70;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

/* TITLE */

.rtp-hero-title {

    margin-bottom: 24px;

    color: white;

    font-size: 72px;

    line-height: 0.95;

    font-weight: 900;

    text-transform: uppercase;

}

/* GOLD */

.rtp-hero-title span {

    background:

        linear-gradient(to bottom,

            #fff2be,

            #ffc53f,

            #d98a00);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

/* DESCRIPTION */

.rtp-hero-description {

    max-width: 520px;

    color:

        rgba(255, 255, 255, 0.75);

    font-size: 16px;

    line-height: 1.8;

}

/* =========================

   RTP SECTION

========================= */

.rtp-section {

    width: 100%;

    padding: 100px 0;

    background:

        linear-gradient(to bottom,

            #140904,

            #2b1407);

}

/* HEADER */

.rtp-header {

    margin-bottom: 40px;

    text-align: center;

}

.rtp-subtitle {

    display: inline-block;

    margin-bottom: 12px;

    color: #ffcb70;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.rtp-title {

    margin-bottom: 16px;

    color: white;

    font-size: 48px;

    font-weight: 900;

}

.rtp-description {

    max-width: 700px;

    margin: auto;

    color:

        rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.8;

}

/* =========================

   HIGHLIGHT

========================= */

.rtp-highlight {

    margin-bottom: 28px;

    padding: 36px;

    border-radius: 30px;

    background:

        radial-gradient(circle at top,

            rgba(255, 190, 60, 0.15),

            transparent 40%),

        linear-gradient(180deg,

            #5f3312,

            #321707);

    border:

        1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}

/* LEFT */

.rtp-highlight-left h3 {

    margin-bottom: 12px;

    font-size: 42px;

    font-weight: 900;

    color: white;

}

.rtp-highlight-left p {

    max-width: 520px;

    color:

        rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.8;

}

/* LIVE BADGE */

.rtp-live-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 20px;

    height: 42px;

    padding: 0 18px;

    border-radius: 999px;

    background:

        rgba(255, 255, 255, 0.08);

    border:

        1px solid rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 13px;

    font-weight: 700;

}

/* DOT */

.rtp-dot {

    width: 10px;

    height: 10px;

    border-radius: 999px;

    background: #ff3b3b;

    animation: rtpPulse 1s infinite;

}

@keyframes rtpPulse {

    0% {

        opacity: 1;

    }

    50% {

        opacity: 0.3;

    }

    100% {

        opacity: 1;

    }

}

/* RIGHT */

.rtp-highlight-right {

    text-align: right;

}

.rtp-highlight-right strong {

    display: block;

    margin-bottom: 10px;

    font-size: 72px;

    font-weight: 900;

    line-height: 1;

    background:

        linear-gradient(to bottom,

            #fff2be,

            #ffc53f,

            #d98a00);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.rtp-highlight-right span {

    color:

        rgba(255, 255, 255, 0.65);

    font-size: 13px;

    letter-spacing: 2px;

}

/* =========================

   TABLE

========================= */

.rtp-table {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

/* ITEM */

.rtp-item {

    padding: 22px 24px;

    border-radius: 22px;

    background:

        linear-gradient(180deg,

            rgba(255, 255, 255, 0.05),

            rgba(255, 255, 255, 0.02));

    border:

        1px solid rgba(255, 255, 255, 0.06);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    transition: 0.3s ease;

}

.rtp-item:hover {

    transform: translateY(-4px);

    border-color:

        rgba(255, 210, 120, 0.2);

}

/* GAME */

.rtp-game {

    display: flex;

    align-items: center;

    gap: 18px;

    min-width: 320px;

}

.rtp-game img {

    width: 72px;

    height: 72px;

    border-radius: 18px;

    object-fit: cover;

}

.rtp-game strong {

    display: block;

    margin-bottom: 6px;

    color: white;

    font-size: 18px;

}

.rtp-game span {

    color:

        rgba(255, 255, 255, 0.6);

    font-size: 13px;

}

/* PROGRESS */

.rtp-progress {

    flex: 1;

    display: flex;

    align-items: center;

    gap: 18px;

}

/* BAR */

.rtp-bar {

    position: relative;

    flex: 1;

    height: 14px;

    overflow: hidden;

    border-radius: 999px;

    background:

        rgba(255, 255, 255, 0.08);

}

.rtp-fill {

    position: absolute;

    inset: 0;

    border-radius: 999px;

    background:

        linear-gradient(to right,

            #ffdf89,

            #d89a21);

}

/* RTP NUMBER */

.rtp-progress strong {

    min-width: 88px;

    text-align: right;

    color: #ffd978;

    font-size: 20px;

    font-weight: 900;

}

/* STATUS */

.rtp-status {

    min-width: 90px;

    height: 42px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        rgba(255, 255, 255, 0.06);

    color: white;

    font-size: 12px;

    font-weight: 800;

}

/* HOT */

.rtp-status.hot {

    background:

        linear-gradient(to bottom,

            #ff6767,

            #d91f1f);

}

/* LIVE */

.rtp-status.live {
    background:
        linear-gradient(to bottom,
            #ffe08b,
            #dca42a);
    color: #3b250f;
}

/* =========================

   COMMUNITY SECTION

========================= */

.community-section {

    width: 100%;

    padding: 100px 7%;

    background:

        linear-gradient(to bottom,

            #1a0b03,

            #090402);

}

/* =========================

   HEADER

========================= */

.community-header {

    margin-bottom: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}

.community-subtitle {

    display: inline-block;

    margin-bottom: 10px;

    color: #ffcb70;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.community-title {

    color: white;

    font-size: 46px;

    font-weight: 900;

}

/* ONLINE */

.community-online {

    height: 48px;

    padding: 0 18px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:

        rgba(255, 255, 255, 0.05);

    border:

        1px solid rgba(255, 255, 255, 0.08);

    color: white;

    font-size: 14px;

    font-weight: 700;

}

.online-dot {

    width: 10px;

    height: 10px;

    border-radius: 999px;

    background: #35ff69;

    animation: pulse 1s infinite;

}

/* =========================

   WRAPPER

========================= */

.community-wrapper {

    display: grid;

    grid-template-columns:

        1.4fr 0.8fr;

    gap: 24px;

}

/* =========================

   CHAT

========================= */

.community-chat {

    border-radius: 30px;

    overflow: hidden;

    background:

        rgba(255, 255, 255, 0.04);

    border:

        1px solid rgba(255, 255, 255, 0.06);

    backdrop-filter: blur(10px);

}

/* BODY */

.chat-body {

    height: 620px;

    overflow-y: auto;

    padding: 28px;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

/* MESSAGE */

.chat-message {

    display: flex;

    align-items: flex-start;

    gap: 14px;

    animation:

        chatFade .4s ease;

}

@keyframes chatFade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/* AVATAR */

.chat-avatar {

    width: 54px;

    height: 54px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #3b250f;

    font-size: 20px;

    font-weight: 900;

    flex-shrink: 0;

}

.chat-avatar.vip {

    background:

        linear-gradient(to bottom,

            #ffe18f,

            #d89b22);

}

.chat-avatar.gold {

    background:

        linear-gradient(to bottom,

            #fff2be,

            #e2b447);

}

.chat-avatar.silver {

    background:

        linear-gradient(to bottom,

            #dcdcdc,

            #9e9e9e);

}

/* CONTENT */

.chat-content {

    flex: 1;

    padding: 18px;

    border-radius: 20px;

    background:

        rgba(255, 255, 255, 0.04);

    border:

        1px solid rgba(255, 255, 255, 0.05);

}

.chat-top {

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    gap: 10px;

}

.chat-top strong {

    color: white;

    font-size: 15px;

}

.chat-rank {

    height: 28px;

    padding: 0 12px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    font-size: 11px;

    font-weight: 800;

}

.chat-rank.vip {

    background: #ffcb70;

    color: #3b250f;

}

.chat-rank.gold {

    background: #ffd978;

    color: #3b250f;

}

.chat-rank.silver {

    background: #c8c8c8;

    color: #222;

}

.chat-content p {

    color:

        rgba(255, 255, 255, 0.75);

    font-size: 14px;

    line-height: 1.7;

}

/* =========================

   TYPING

========================= */

.chat-typing {

    padding: 18px 28px;

    display: flex;

    align-items: center;

    gap: 8px;

    border-top:

        1px solid rgba(255, 255, 255, 0.06);

}

.typing-dot {

    width: 8px;

    height: 8px;

    border-radius: 999px;

    background: #ffd978;

    animation:

        typing 1s infinite;

}

.typing-dot:nth-child(2) {

    animation-delay: .2s;

}

.typing-dot:nth-child(3) {

    animation-delay: .4s;

}

@keyframes typing {

    0% {

        opacity: .2;

    }

    50% {

        opacity: 1;

    }

    100% {

        opacity: .2;

    }

}

.chat-typing small {

    color:

        rgba(255, 255, 255, 0.5);

    margin-left: 8px;

}

/* =========================

   INPUT

========================= */

.chat-input-area {

    padding: 24px 28px;

    display: flex;

    gap: 14px;

    border-top:

        1px solid rgba(255, 255, 255, 0.06);

}

.chat-input {

    flex: 1;

    height: 54px;

    padding: 0 18px;

    border: none;

    outline: none;

    border-radius: 16px;

    background:

        rgba(255, 255, 255, 0.06);

    color: white;

}

.chat-send {

    min-width: 120px;

    border: none;

    border-radius: 16px;

    background:

        linear-gradient(to bottom,

            #ffe08b,

            #dca42a);

    color: #3b250f;

    font-size: 14px;

    font-weight: 800;

    cursor: pointer;

}

/* =========================

   SIDEBAR

========================= */

.community-sidebar {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.sidebar-card {

    padding: 26px;

    border-radius: 26px;

    background:

        rgba(255, 255, 255, 0.04);

    border:

        1px solid rgba(255, 255, 255, 0.06);

}

.sidebar-label {

    display: inline-block;

    margin-bottom: 14px;

    color: #ffcb70;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}

.sidebar-card h3 {

    margin-bottom: 14px;

    color: white;

    font-size: 28px;

    font-weight: 900;

}

.sidebar-card strong {

    color: #ffd978;

    font-size: 38px;

    font-weight: 900;

}

/* LIST */

.top-member-list {

    display: flex;

    flex-direction: column;

    gap: 14px;

    list-style: none;

}

.top-member-list li {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: white;

}

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

@media (max-width: 768px) {

    .nav-menu {
        display: none;
    }

    .hero-section {
        height: 420px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 48px;
    }

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

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-btn {
        width: 100%;
    }

    .live-withdraw {
        flex-direction: column;
        align-items: flex-start;

        padding: 24px 20px;
    }

    .withdraw-amount {
        font-size: 38px;
    }

    .withdraw-right {
        width: 100%;

        flex-direction: column;
    }

    .withdraw-box {
        width: 100%;
    }

    .premium-games {
        padding: 60px 20px;
    }

    .premium-title {
        font-size: 30px;
    }

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

        gap: 14px;
    }

    .premium-image {
        height: 120px;
    }

    .premium-content {
        padding: 14px;
    }

    .premium-content h3 {
        margin-bottom: 12px;

        font-size: 15px;
    }

    .premium-btn {
        height: 40px;

        font-size: 13px;
    }

    .reward-section {

        padding: 70px 20px;

    }

    .reward-title {

        font-size: 34px;

    }

    .reward-description {

        font-size: 14px;

        line-height: 1.7;

    }

    /* WRAPPER */

    .reward-wrapper {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    /* FEATURE */

    .reward-feature {

        padding: 24px;

        border-radius: 22px;

    }

    .reward-badge {

        top: 18px;

        left: 18px;

        height: 34px;

        font-size: 11px;

    }

    .reward-feature-image {

        height: 220px;

        border-radius: 18px;

    }

    .reward-feature-content h3 {

        font-size: 26px;

    }

    .reward-feature-content p {

        font-size: 14px;

    }

    /* META */

    .reward-meta {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .reward-meta strong {

        font-size: 22px;

    }

    /* LIST ITEM */

    .reward-item {

        flex-direction: column;

        align-items: flex-start;

        padding: 18px;

        border-radius: 20px;

    }

    .reward-item-image {

        width: 100%;

        height: 180px;

        border-radius: 16px;

    }

    .reward-item-content h4 {

        font-size: 20px;

    }

    .reward-item-content p {

        font-size: 13px;

        line-height: 1.6;

    }

    .reward-item-tag {
        top: 14px;
        right: 14px;
        height: 30px;
        font-size: 10px;
    }

    .winner-section {

        padding: 70px 20px;

    }

    /* TITLE */

    .winner-title {

        font-size: 34px;

    }

    /* WRAPPER */

    .winner-wrapper {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    /* FEATURE */

    .winner-feature {

        border-radius: 24px;

    }

    .winner-live {

        top: 18px;

        left: 18px;

        height: 36px;

        font-size: 11px;

    }

    .winner-feature-image {

        height: 260px;

    }

    .winner-feature-content {

        padding: 24px;

    }

    .winner-feature-content h3 {

        font-size: 38px;

    }

    .winner-feature-content p {

        font-size: 14px;

    }

    /* ITEM */

    .winner-item {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        padding: 20px;

        border-radius: 20px;

    }

    /* AVATAR */

    .winner-avatar {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    /* USER INFO */

    .winner-user-info strong {
        font-size: 16px;
    }

    .winner-user-info span {
        font-size: 12px;
    }

    /* PRICE */

    .winner-price {
        font-size: 20px;
    }

    .jackpot-section {

        padding: 70px 20px;

    }

    .jackpot-top {

        flex-direction: column;

        align-items: flex-start;

    }

    .jackpot-title {

        font-size: 34px;

    }

    .jackpot-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }

    .jackpot-card {

        padding: 24px;

        border-radius: 24px;

    }

    .jackpot-card h3 {

        font-size: 36px;

    }

    .jackpot-member-item {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .jackpot-ticker {

        height: 54px;

    }

    .jackpot-ticker-track {

        font-size: 13px;

    }

    casino-footer {

        padding: 70px 20px 30px;

    }

    /* TOP */

    .footer-top {

        grid-template-columns: 1fr;

        gap: 34px;

    }

    /* LOGO */

    .footer-logo {

        font-size: 32px;

    }

    .footer-description {

        max-width: 100%;

        font-size: 14px;

    }

    /* SOCIAL */

    .footer-social {

        flex-wrap: wrap;

    }

    /* COLUMN */

    .footer-column h4 {

        font-size: 16px;

    }

    /* BADGE */

    .footer-middle {

        justify-content: flex-start;

        gap: 12px;

    }

    .footer-badge {

        width: 100%;

        justify-content: flex-start;

        font-size: 13px;

    }

    /* PAYMENT */

    .footer-payment-list {

        justify-content: flex-start;

    }

    .payment-item {

        min-width: 90px;

        height: 48px;

        font-size: 13px;

    }

    /* BOTTOM */

    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

    }

    .footer-bottom-links {

        flex-wrap: wrap;

        gap: 14px;

    }

    .rtp-hero {

        min-height: 320px;

    }

    .rtp-hero-title {

        font-size: 42px;

    }

    .rtp-hero-description {

        font-size: 14px;

    }

    .rtp-section {

        padding: 70px 0;

    }

    .rtp-title {

        font-size: 34px;

    }

    .rtp-description {

        font-size: 14px;

    }

    .rtp-highlight {

        flex-direction: column;

        align-items: flex-start;

        padding: 24px;

        border-radius: 24px;

    }

    .rtp-highlight-left h3 {

        font-size: 30px;

    }

    .rtp-highlight-right {

        width: 100%;

        text-align: left;

    }

    .rtp-highlight-right strong {

        font-size: 52px;

    }

    .rtp-item {

        flex-direction: column;

        align-items: flex-start;

        padding: 20px;

    }

    .rtp-game {

        min-width: 100%;

    }

    .rtp-progress {

        width: 100%;

    }

    .rtp-status {

        width: 100%;

    }

    .community-section {

        padding: 70px 20px;

    }

    .community-header {

        flex-direction: column;

        align-items: flex-start;

    }

    .community-title {

        font-size: 34px;

    }

    .community-wrapper {

        grid-template-columns: 1fr;

    }

    .chat-body {

        height: 480px;

        padding: 20px;

    }

    .chat-input-area {

        flex-direction: column;

    }

    .chat-send {

        width: 100%;

        height: 52px;

    }
}