:root {
    --primary-gold: #ffcc00;
    --hover-gold: #ffd633;
    --dark-bg: #000000;
    --header-bg: #0a0a0a;
    --text-white: #ffffff;
    --marquee-bg: #000000;
    --font-outfit: 'Outfit', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
}

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

body {
    background-color: #0d0d0d;
    background-image: url('background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-white);
    font-family: var(--font-roboto);
    line-height: 1.5;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.mobile-wrapper {
    width: 100%;
    max-width: 480px;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
    display: flex;
    flex-direction: column;
}

.main-header {
    background-image: url('headerbackground.gif');
    background-size: cover;
    background-position: center;
    padding: 10px 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px 15px;
}

.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    display: block;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.partnership-container {
    cursor: pointer;
}

.partnership-btn {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.partnership-btn:hover {
    transform: scale(1.05);
}

.translate-container {
    cursor: pointer;
    background: #ffffff;
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.translate-icon {
    height: 25px;
    width: auto;
}

/* Marquee Section */
.marquee-wrapper {
    background-color: var(--marquee-bg);
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    padding: 2px 0;
}

.marquee-content {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-outfit);
    text-transform: uppercase;
}

marquee {
    display: block;
    padding: 4px 0;
    color: var(--text-white);
    font-family: var(--font-outfit);
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 5px;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%; /* 4 slides */
}

.slide {
    width: 25%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-gold);
    width: 20px; /* Pill shape for active dot */
    border-radius: 4px;
}

/* User Dashboard Section */
.user-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    background: transparent;
    margin-top: 5px;
}

.balance-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.label-baki {
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-outfit);
}

.balance-amount {
    color: var(--primary-gold);
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-outfit);
    line-height: 1.1;
    margin-bottom: 5px;
}

.min-limits p {
    font-size: 11px;
    color: #ccc;
    margin: 0;
}

.min-limits strong {
    color: #fff;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
    align-items: flex-end;
}

.dash-action-gif {
    height: 35px; /* Unified icon size */
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.dash-action-gif:active {
    transform: scale(0.95);
}

/* Sticky Bottom Content (Banners + Buttons) */
.bottom-stick-area {
    padding: 0 15px 100px;
    display: flex;
    flex-direction: column;
}

.secondary-banners {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Spacing between the TWO banners */
}

.bottom-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.third-banners {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.banner-box {
    position: relative;
    width: 100%;
    display: block;
    overflow: visible; /* Ensure overlay button is not clipped */
}

.banner-box .bottom-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.lucky-number-btn {
    position: absolute;
    bottom: 7%; 
    left: 8%;   
    width: 140px; /* Fixed width for better control */
    max-width: 40%;
    cursor: pointer;
    transition: transform 0.2s;
    z-index: 999;
    display: block !important;
}

.lucky-number-btn:active {
    transform: scale(0.95);
}

/* Referral Actions Grid */
.referral-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: -2px; /* Aggressive stick to banners */
}

.referral-btn {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
    border-radius: 30px;
}

.referral-btn:active {
    transform: scale(0.95);
}

/* Quick Action Bar (Legacy) */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
    padding: 15px 10px;
    border-bottom: 3px solid var(--primary-gold);
    gap: 10px;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.action-item:active {
    transform: scale(0.95);
    background: rgba(255, 204, 0, 0.1);
}

.action-item img {
    height: 35px;
    width: 35px;
    object-fit: contain;
}

.action-item span {
    color: var(--primary-gold);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-outfit);
}

/* Game Categories */
.game-categories {
    display: flex;
    overflow-x: auto;
    padding: 15px 10px;
    gap: 12px;
    background: #050505;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.game-categories::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.2s ease;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
}

.category-item.active {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.15) 0%, rgba(255, 204, 0, 0.05) 100%);
    border-color: var(--primary-gold);
}

.category-item img {
    height: 35px; /* Unified icon size */
    width: auto;
}

.category-item span {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    white-space: nowrap;
}

.category-item.active span {
    color: var(--primary-gold);
}

/* Game Grid */
.game-display {
    padding: 15px 10px 80px; /* Extra bottom padding for footer nav later */
}

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

.game-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.game-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
}

.game-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 800;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
}

.game-badge.hot { background: linear-gradient(45deg, #ff4d4d, #ff0000); }
.game-badge.new { background: linear-gradient(45deg, #4dff88, #00cc44); }

.play-btn {
    width: 100%;
    padding: 8px 0;
    background: linear-gradient(180deg, #ffd700 0%, #b8860b 100%);
    border: none;
    color: #000;
    font-weight: 800;
    font-size: 11px;
    cursor: pointer;
    font-family: var(--font-outfit);
}

.show-more-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.show-more-btn {
    padding: 10px 30px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--primary-gold);
    color: #000;
}


/* Bottom Navigation - Fresh Implementation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    height: 65px; /* Proportional to 35px icons */
    background: #000 url('menubar/menubackground.jpg') no-repeat center bottom;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 -2px 15px rgba(0,0,0,1);
}

.nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.nav-icon {
    width: 35px; /* Requested size */
    height: 35px;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    transition: all 0.2s ease;
}

.nav-item.active .nav-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.icon-home { background-image: url('menubar/home.png'); }
.icon-history { background-image: url('menubar/history.png'); }
.icon-promo { background-image: url('menubar/promo.png'); }
.icon-livechat { background-image: url('menubar/livechat.png'); }
.icon-setting { background-image: url('menubar/setting.png'); }

.nav-badge {
    position: absolute;
    top: 5px; /* Adjusted for 35px icons */
    right: 18%;
    background: #FF0000;
    color: #fff;
    font-size: 9px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    box-shadow: 0 0 5px rgba(255,0,0,0.5);
    z-index: 10;
}

/* Ensure no icons from previous versions show up */
.nav-item img {
    display: none !important;
}

/* Live Transaction Table */
.live-transaction {
    margin: 10px 5px;
    background: transparent; /* Seamless background */
}

.transaction-header {
    background: #000;
    padding: 5px 10px;
    border-bottom: 1px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-header .title {
    color: var(--primary-gold);
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font-outfit);
    text-transform: uppercase;
}

.live-badge {
    background: #ff0000;
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 3px;
    animation: blink 1.5s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.transaction-table {
    width: 100%;
    border-collapse: collapse;
}

.transaction-table th {
    font-size: 11px;
    padding: 6px 4px;
    text-align: left;
    color: #fff;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-gold); /* Only header bottom border */
}

.th-top-up { 
    background: transparent;
    color: var(--primary-gold) !important;
}

.th-withdraw { 
    background: transparent;
    color: #ff0000 !important;
}

.transaction-table td {
    padding: 6px 4px;
    font-size: 11px;
    color: #fff;
    border: none; /* Removed all cell borders */
    text-align: left;
    height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); /* Faint bottom divider only */
}

.amount {
    color: var(--primary-gold) !important;
    font-weight: 700;
}

.game-name {
    color: #fff;
    font-weight: 400;
}

/* Auth Buttons */
.auth-wrapper {
    display: flex;
    gap: 10px;
    padding: 0 10px 15px;
}

.auth-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    font-family: var(--font-outfit);
    border: none;
    text-align: center;
}

.login-btn {
    background: #1a1c20;
    color: #fff;
    border: 2px solid #3a3f47;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.register-btn {
    background: linear-gradient(180deg, #f0ca4d 0%, #a6851b 100%);
    color: #fff;
    box-shadow: 0 4px 10px rgba(166, 133, 27, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animations and Responsive tweaks */
@media (max-width: 480px) {
    .logo {
        height: 35px;
    }
    
    .partnership-btn {
        height: 35px;
    }
    
    .translate-icon {
        height: 22px;
    }
}

/* Login Page Specific Styles */
.login-section {
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.login-title {
    font-size: 24px;
    font-weight: 900;
    color: #ffcc00; /* Gold from reference */
    margin-bottom: 0px;
    font-family: var(--font-outfit);
}

.form-group {
    width: 100%;
    margin-bottom: 6px;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: var(--font-outfit);
}

.login-input {
    width: 100%;
    height: 38px;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 13px;
    color: #333;
    font-family: var(--font-roboto);
    outline: none;
}

.login-input::placeholder {
    color: #999;
}

.btn-submit-green {
    width: 100%;
    height: 42px;
    background: #00dd00; /* Bright Green from reference */
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    font-family: var(--font-outfit);
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(0, 221, 0, 0.3);
    margin-top: 8px;
}

.register-hint {
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin: 8px 0 4px;
}

.btn-register-gold-alt {
    width: 140px; /* Scaled down width */
    height: 36px;
    background: linear-gradient(180deg, #edde1e 0%, #bd9c0a 100%); /* Gold gradient from reference */
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    font-family: var(--font-outfit);
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(189, 156, 10, 0.3);
    margin: 0 auto; /* Center it */
}

.forgot-password-link {
    display: block;
    width: 100%;
    text-align: center;
    color: #ffcc00;
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    text-decoration: none;
}

/* Promotion Page Styles */
.promo-section {
    padding: 15px 10px 80px; /* Space for bottom nav */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-header-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

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

.promo-card {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.promo-card:active {
    transform: scale(0.95);
}

.promo-card img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Slightly more rounded for banners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Live Chat Page Styles */
.chat-body .mobile-wrapper {
    background-image: none;
    background-color: #e5edf5; /* Light greyish-blue from reference */
}

.chat-content {
    padding: 10px 15px 140px; /* Space for input and bottom nav */
    display: flex;
    flex-direction: column;
}

.chat-timestamp {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    font-family: var(--font-roboto);
}

.chat-bubble {
    background: #555555;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    font-family: var(--font-roboto);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.chat-title {
    color: #111;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.chat-welcome {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}

.chat-highlight {
    color: var(--primary-gold);
    font-weight: bold;
}

.chat-warning {
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.chat-danger {
    color: #ff3333; /* Red text for danger/alert */
    font-weight: bold;
}

.chat-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
}

.chat-links p {
    color: #fff;
}

.chat-links a {
    color: #8ab4f8; /* Light blue link color */
    text-decoration: underline;
}

.chat-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    margin: 15px 0;
}

.chat-terms {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
    font-weight: bold;
}

.chat-check {
    color: #4CAF50; /* Green checkmark */
}

/* Chat Input Area */
.chat-input-area {
    position: fixed;
    bottom: 65px; /* Above 65px bottom nav */
    width: 100%;
    max-width: 480px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background: #e5edf5;
    z-index: 1000;
}

.chat-input-box {
    background: #555555;
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 5px 15px;
}

.chat-input-box input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 15px;
    outline: none;
    padding: 10px 0;
}

.chat-input-box input::placeholder {
    color: #ccc;
}

.chat-input-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.icon-send, .icon-clip {
    width: 24px;
    height: 24px;
    color: #ff3333; /* Red color from reference */
    cursor: pointer;
}

/* SEO Content Section */
.seo-content-section {
    padding: 30px 15px;
    background: transparent;
    margin-top: 20px;
    font-family: var(--font-roboto);
    position: relative;
}

/* Add a glowing decorative gradient behind the SEO section */
.seo-content-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,204,0,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    pointer-events: none;
}

.seo-text-block {
    margin-bottom: 30px;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 204, 0, 0.1);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.seo-text-block h1 {
    font-family: var(--font-outfit);
    font-size: 24px;
    background: linear-gradient(90deg, #ffcc00, #fff0aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
}

.seo-text-block h2 {
    font-family: var(--font-outfit);
    font-size: 18px;
    color: #fff;
    margin: 30px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    position: relative;
}

.seo-text-block h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
}

.seo-text-block h3 {
    font-family: var(--font-outfit);
    font-size: 16px;
    color: var(--primary-gold);
    margin: 20px 0 10px;
}

.seo-text-block h4 {
    font-family: var(--font-outfit);
    font-size: 15px;
    color: #fff;
    margin: 15px 0 10px;
}

.seo-text-block p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #b3b3b3;
    margin-bottom: 15px;
}

.seo-text-block strong {
    color: #e6e6e6;
    font-weight: 600;
}

/* Table of Contents */
.seo-toc {
    background: linear-gradient(145deg, rgba(20,20,20,0.8), rgba(0,0,0,0.6));
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 20px 0 30px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.seo-toc h3 {
    margin-top: 0;
    color: var(--primary-gold);
    text-align: center;
    border-bottom: 1px dashed rgba(255, 204, 0, 0.3);
    padding-bottom: 10px;
}

.seo-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-toc li {
    margin-bottom: 8px;
}

.seo-toc a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.seo-toc a::before {
    content: '▸';
    color: var(--primary-gold);
    margin-right: 8px;
    font-size: 10px;
}

.seo-toc a:hover {
    color: var(--primary-gold);
}

/* Feature Lists */
.seo-feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.seo-feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #b3b3b3;
    line-height: 1.6;
}

.seo-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-gold);
    font-weight: bold;
    background: rgba(255, 204, 0, 0.1);
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
}

/* Highlight Box */
.seo-highlight-box {
    background: rgba(255, 204, 0, 0.03);
    border-left: 3px solid var(--primary-gold);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.seo-highlight-box ul {
    padding-left: 20px;
    color: #b3b3b3;
    font-size: 13.5px;
}

.seo-highlight-box li {
    margin-bottom: 8px;
}

/* Step List */
.seo-step-list {
    padding-left: 20px;
    color: #b3b3b3;
    font-size: 13.5px;
    margin: 15px 0;
}

.seo-step-list li {
    margin-bottom: 10px;
    padding-left: 8px;
}

.seo-step-list li::marker {
    color: var(--primary-gold);
    font-weight: bold;
    font-family: var(--font-outfit);
}

.seo-tip {
    font-style: italic;
    color: var(--primary-gold) !important;
    background: rgba(255, 204, 0, 0.05);
    padding: 10px 15px;
    border-radius: 6px;
    text-align: center;
    font-size: 12px !important;
}

/* Provider Grid */
.game-provider-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

.provider-card {
    background: linear-gradient(180deg, rgba(26,26,26,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    transition: transform 0.3s, border-color 0.3s;
}

.provider-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 204, 0, 0.3);
}

.provider-card h4 {
    margin-top: 0;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
}

.provider-card h4::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 8px var(--primary-gold);
}

.provider-card p {
    margin-bottom: 0;
    font-size: 12.5px;
}

/* Payment Info Box */
.payment-info-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    margin: 20px 0;
}

.payment-info-box p {
    margin-bottom: 0;
    font-size: 13px;
}

.payment-info-box p:nth-child(3),
.payment-info-box p:nth-child(4) {
    grid-column: span 2;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer text */
.seo-footer-text {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.seo-footer-text h3 {
    margin-bottom: 12px;
}

/* FAQ Section Redesign */
.faq-container {
    background: rgba(15, 15, 15, 0.6);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 204, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-title {
    font-family: var(--font-outfit);
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item {
    margin-bottom: 12px;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    border-color: rgba(255, 204, 0, 0.3);
    background: rgba(20,20,20,0.8);
}

.faq-item summary {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    font-family: var(--font-outfit);
    outline: none;
    list-style: none;
    position: relative;
    padding: 15px 40px 15px 15px;
    transition: color 0.3s;
}

.faq-item:hover summary {
    color: var(--primary-gold);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
    background: rgba(255,204,0,0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    font-size: 13.5px;
    color: #aaa;
    margin: 0;
    padding: 0 15px 15px 15px;
    line-height: 1.6;
}

/* --- Navigation Side Menu Drawer --- */
.side-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2500;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -280px; /* Start off-screen to the left */
    width: 250px;
    height: 100vh;
    background: #0d0d0d;
    z-index: 2501;
    transition: left 0.3s ease;
    border-right: 2px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.8);
}

.side-menu.active {
    left: 0;
}

.side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
    background: #111;
}

.side-menu-header .side-logo {
    height: 30px;
}

.side-menu-header .close-btn {
    color: var(--primary-gold);
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    font-family: Arial, sans-serif;
}

.side-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.side-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.side-menu-list a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-outfit);
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.side-menu-list a:hover {
    background: rgba(255, 204, 0, 0.1);
    color: var(--primary-gold);
}
