/* ===== CSS VARIABLES ===== */
:root {
    --gold: #f5c518;
    --dark-bg: #0d0d0d;
    --card-bg: #1a1a1f;
    --purple-glow: rgba(120, 60, 200, 0.35);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    background-color: var(--dark-bg);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(100, 40, 180, 0.4) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #111 !important;
    border-bottom: 1px solid #222;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #fff !important;
    letter-spacing: 1px;
}

.navbar-brand span {
    color: var(--gold);
}

.nav-link {
    color: #ccc !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0 4px;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #fff !important;
}

.btn-login {
    background: var(--gold);
    color: #111;
    font-weight: 700;
    border-radius: 6px;
    padding: 8px 22px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-login:hover {
    background: #e6b800;
    transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 65px);
    display: flex;
    align-items: center;
    padding: 60px 0 80px;
}

.badge-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-label::before {
    content: '•';
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.hero-title .gold {
    color: var(--gold);
}

.hero-title-outline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    line-height: 1;
    letter-spacing: 1px;
    -webkit-text-stroke: 2px var(--gold);
    color: transparent;
    display: block;
}

.hero-desc {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
    margin: 22px 0 32px;
}

.hero-desc strong {
    color: #fff;
}

.btn-register {
    background: var(--gold);
    color: #111;
    font-weight: 800;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(245, 197, 24, 0.3);
}

.btn-register:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.45);
}

.btn-download {
    background: transparent;
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 1rem;
    border: 1px solid #333;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.btn-download:hover {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.07);
    color: #fff;
}

/* ===== GAME CARD ===== */
.game-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    padding: 24px;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.win-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--gold);
    color: #111;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.game-card .label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #666;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.period-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 4px;
}

.countdown {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 22px;
}

.color-btn {
    border: none;
    border-radius: 10px;
    padding: 14px 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.color-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.color-btn .payout {
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.85;
}

.btn-red {
    background: linear-gradient(135deg, #c0392b, #922b21);
}

.btn-green {
    background: linear-gradient(135deg, #1e8449, #196f3d);
}

.btn-violet {
    background: linear-gradient(135deg, #7d3c98, #6c3483);
}

.results-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
    font-weight: 700;
    margin: 20px 0 10px;
}

.result-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #fff;
}

.dot.g {
    background: #1e8449;
}

.dot.r {
    background: #c0392b;
}

.dot.v {
    background: #7d3c98;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.countdown span {
    animation: pulse 1s infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease forwards;
}

.fade-up-2 {
    animation: fadeUp 0.7s 0.15s ease both;
}

.fade-up-3 {
    animation: fadeUp 0.7s 0.30s ease both;
}

.fade-up-4 {
    animation: fadeUp 0.7s 0.45s ease both;
}

/* ===== TRUST BADGES SECTION ===== */
.trust-section {
    position: relative;
    z-index: 1;
    padding: 30px 0 10px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #1a1a1f;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ccc;
    transition: border-color 0.2s, color 0.2s;
}

.trust-item:hover {
    border-color: var(--gold);
    color: #fff;
}

.trust-icon {
    width: 34px;
    height: 34px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== STATS SECTION ===== */
.stats-section {
    position: relative;
    z-index: 1;
    background: #141418;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    margin-top: 50px;
    padding: 48px 0;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
    padding: 10px 20px;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.88rem;
    color: #888;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #2a2a2a;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .game-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 140px;
    }

    .trust-badges {
        gap: 10px;
    }
}

/* ===== GAMES SECTION ===== */
.games-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.games-header {
    margin-bottom: 40px;
}

.section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 14px;
}

.section-desc {
    color: #999;
    font-size: 0.95rem;
    max-width: 520px;
    line-height: 1.7;
}

.section-desc strong {
    color: #fff;
}

/* ===== FEATURED CARD ===== */
.featured-card {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-top: 2px solid var(--gold);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 16px;
}

/* ===== SMALL CARDS ===== */
.small-card {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    transition: transform 0.2s, border-color 0.2s;
}

.small-card:hover {
    transform: translateY(-4px);
}

.border-green {
    border-top: 2px solid #1e8449;
}

.border-blue {
    border-top: 2px solid #2980b9;
}

.border-red {
    border-top: 2px solid #c0392b;
}

.border-gold {
    border-top: 2px solid var(--gold);
}

/* ===== GAME ICON BOX ===== */
.game-icon-box {
    width: 44px;
    height: 44px;
    background: #1e1e26;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

/* ===== GAME TITLE & DESC ===== */
.game-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.game-desc {
    font-size: 0.875rem;
    color: #888;
    line-height: 1.65;
    margin-bottom: 16px;
}

.game-desc strong {
    color: #ccc;
}

/* ===== TAGS ===== */
.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.tag-green {
    background: rgba(30, 132, 73, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(30, 132, 73, 0.3);
}

.tag-gold {
    background: rgba(245, 197, 24, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 197, 24, 0.3);
}

.tag-outline {
    background: transparent;
    color: #aaa;
    border: 1px solid #333;
}

.tag-blue {
    background: rgba(41, 128, 185, 0.15);
    color: #5dade2;
    border: 1px solid rgba(41, 128, 185, 0.3);
}

.tag-red {
    background: rgba(192, 57, 43, 0.15);
    color: #e74c3c;
    border: 1px solid rgba(192, 57, 43, 0.3);
}

/* ===== MINI PREDICT CARD ===== */
.mini-predict-card {
    background: #1a1a22;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 20px;
}

.mini-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 14px;
}

.mini-btns {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.mini-btn {
    flex: 1;
    border: none;
    border-radius: 8px;
    padding: 10px 6px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: transform 0.15s;
}

.mini-btn:hover {
    transform: translateY(-2px);
}

.mini-btn span {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.8;
}

.mini-red {
    background: linear-gradient(135deg, #c0392b, #922b21);
}

.mini-green {
    background: linear-gradient(135deg, #1e8449, #196f3d);
}

.mini-violet {
    background: linear-gradient(135deg, #7d3c98, #6c3483);
}

.mini-active {
    font-size: 0.78rem;
    color: #666;
}

.mini-active strong {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .games-section {
        padding: 50px 0;
    }

    .featured-card {
        padding: 20px;
    }

    .mini-btns {
        flex-direction: column;
    }
}

/* ================ */
/* ===== HOW TO START SECTION ===== */
.howto-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.step-card {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 20px;
    height: 100%;
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
    text-align: left;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.step-icon {
    width: 46px;
    height: 46px;
    background: #1e1e26;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.step-num {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 26px;
    height: 26px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.3);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* ===== SAFE SECURE SECTION ===== */
.safe-section {
    position: relative;
    z-index: 1;
    background: #0f0f13;
    border-top: 1px solid #1e1e1e;
    padding: 80px 0;
}

.trust-card {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 28px 22px;
    height: 100%;
    transition: transform 0.2s, border-color 0.2s;
}

.trust-card:hover {
    transform: translateY(-4px);
    border-color: #444;
}

.trust-card-icon {
    width: 46px;
    height: 46px;
    background: #1e1e26;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.trust-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.trust-card-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .howto-section,
    .safe-section {
        padding: 50px 0;
    }
}

/* ===== BONUS SECTION ===== */
.bonus-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
}

.bonus-card {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.2s, border-color 0.2s;
}

.bonus-card:hover {
    transform: translateY(-4px);
    border-color: #3a3a3a;
}

.bonus-icon {
    width: 46px;
    height: 46px;
    background: #1e1e26;
    border: 1px solid #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bonus-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.bonus-desc {
    font-size: 0.82rem;
    color: #777;
    line-height: 1.65;
    margin-bottom: 14px;
}

.bonus-desc strong {
    color: #bbb;
}

.bonus-btn {
    border: none;
    border-radius: 20px;
    padding: 7px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.2s;
}

.bonus-btn:hover {
    transform: translateY(-1px);
    opacity: 0.88;
}

.btn-gold {
    background: var(--gold);
    color: #111;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(245, 197, 24, 0.4) !important;
}

/* ===== APK SECTION ===== */
.apk-section {
    position: relative;
    z-index: 1;
    background: #0c0c12;
    border-top: 1px solid #1e1e1e;
    padding: 80px 0;
}

.apk-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.apk-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 18px 20px;
    transition: border-color 0.2s;
}

.apk-step:hover {
    border-color: var(--gold);
}

.apk-step-num {
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: #111;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.apk-step p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin: 0;
    padding-top: 4px;
}

.apk-step p strong {
    color: #ddd;
}

/* Payment Tags */
.payment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-tag {
    background: #1a1a22;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .bonus-section,
    .apk-section {
        padding: 50px 0;
    }

    .bonus-card {
        flex-direction: column;
    }
}

/* ===== ABOUT / WHAT IS JAI CLUB SECTION ===== */
.about-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: #0d0d0d;
}

.about-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.about-para {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-para strong {
    color: #ddd;
}

/* ===== FEATURE LIST ===== */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #16161c;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 14px 18px;
    transition: border-color 0.2s, background 0.2s;
}

.feature-item:hover {
    border-color: rgba(245, 197, 24, 0.3);
    background: #1a1a22;
}

.feature-dot {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.55;
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }

    .about-title {
        font-size: 2rem;
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: #0a0a0f;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #1e1e1e;
}

.faq-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    color: #ccc;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    transition: color 0.2s;
}

.faq-btn:hover {
    color: #fff;
}

.faq-item.open .faq-btn {
    color: #fff;
}

.faq-icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.7;
    padding: 0 4px 20px;
    margin: 0;
}

/* ===== RESPONSIBLE GAMING NOTICE ===== */
.responsible-notice {
    background: #1a0f0f;
    border-top: 1px solid #3a1a1a;
    border-bottom: 1px solid #3a1a1a;
    padding: 16px 0;
    position: relative;
    z-index: 1;
}

.responsible-notice p {
    font-size: 0.8rem;
    color: #aa7777;
    margin: 0;
    line-height: 1.6;
}

.responsible-notice strong {
    color: #cc9999;
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.footer-brand span {
    color: #fff;
}

.footer-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-pay-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-heading {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.84rem;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    margin-top: 48px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.footer-copy {
    font-size: 0.74rem;
    color: #444;
    margin: 0;
    max-width: 680px;
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.76rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =================================privacy==================================== */
/* ===== PRIVACY POLICY PAGE ===== */

/* Hero */
.pp-hero {
    position: relative;
    z-index: 1;
    padding: 60px 0 40px;
    border-bottom: 1px solid #1e1e1e;
}

.pp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 16px;
}

.pp-breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}

.pp-breadcrumb a:hover {
    text-decoration: underline;
}

.pp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.pp-meta {
    font-size: 0.82rem;
    color: #555;
    margin-bottom: 14px;
}

.pp-meta strong {
    color: #888;
}

.pp-subtitle {
    font-size: 0.92rem;
    color: #888;
    max-width: 600px;
    line-height: 1.7;
    margin: 0;
}

/* Body */
.pp-body {
    position: relative;
    z-index: 1;
    padding: 60px 0 80px;
}

/* Table of Contents */
.pp-toc {
    position: sticky;
    top: 90px;
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
}

.toc-heading {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    font-weight: 700;
    margin-bottom: 14px;
}

.pp-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pp-toc ul li a {
    font-size: 0.78rem;
    color: #777;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
    display: block;
    padding: 3px 0;
    border-left: 2px solid transparent;
    padding-left: 10px;
}

.pp-toc ul li a:hover {
    color: var(--gold);
    border-left-color: var(--gold);
}

/* Content */
.pp-content {
    padding-left: 20px;
}

.pp-intro-box {
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 40px;
}

.pp-intro-box p {
    font-size: 0.9rem;
    color: #999;
    line-height: 1.75;
    margin: 0;
}

.pp-intro-box strong {
    color: #fff;
}

/* Section */
.pp-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1a1a1a;
}

.pp-section:last-child {
    border-bottom: none;
}

.pp-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pp-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid rgba(245, 197, 24, 0.25);
    border-radius: 6px;
    padding: 3px 10px;
    letter-spacing: 1px;
    font-family: 'Barlow', sans-serif;
}

.pp-section p {
    font-size: 0.88rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 14px;
}

.pp-section p:last-child {
    margin-bottom: 0;
}

.pp-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ccc;
    margin: 18px 0 8px;
    letter-spacing: 0.5px;
}

/* List */
.pp-list {
    padding-left: 0;
    list-style: none;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pp-list li {
    font-size: 0.86rem;
    color: #888;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.pp-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 4px;
}

.pp-list li strong {
    color: #bbb;
}

/* Highlight Box */
.pp-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(245, 197, 24, 0.05);
    border: 1px solid rgba(245, 197, 24, 0.2);
    border-radius: 10px;
    padding: 16px 18px;
    margin-top: 16px;
}

.pp-highlight-box span {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.pp-highlight-box p {
    font-size: 0.85rem;
    color: #999;
    margin: 0 !important;
    line-height: 1.65;
}

.pp-highlight-box strong {
    color: #ddd;
}

/* Warning Box */
.pp-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(192, 57, 43, 0.07);
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 10px;
    padding: 16px 18px;
}

.pp-warning-box span {
    font-size: 1rem;
    flex-shrink: 0;
}

.pp-warning-box p {
    font-size: 0.85rem;
    color: #aa8888;
    margin: 0 !important;
    line-height: 1.65;
}

.pp-warning-box strong {
    color: #e07070;
}

/* Contact Grid */
.pp-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.pp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #16161c;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 16px 20px;
    flex: 1;
    min-width: 180px;
    transition: border-color 0.2s;
}

.pp-contact-item:hover {
    border-color: var(--gold);
}

.pp-contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pp-contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 4px;
}

.pp-contact-item p {
    font-size: 0.78rem;
    color: #777;
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pp-hero {
        padding: 40px 0 30px;
    }

    .pp-body {
        padding: 40px 0 60px;
    }

    .pp-content {
        padding-left: 0;
    }

    .pp-contact-grid {
        flex-direction: column;
    }
}