/* ==========================================================================
   MOBILE-FIRST APP VIEW THEME (EMERALD GREEN CASINO)
   Comprehensive Content Sections, Mobile Frame, High-Converting UI
   ========================================================================== */

/* Legacy Server Compatibility */
.legacy-server * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    contain-intrinsic-size: auto !important;
}

:root {
    /* Emerald Green & Accent Palette */
    --color-primary: #009038;
    --color-primary-dark: #00752d;
    --color-primary-light: #10b981;
    --color-accent-yellow: #facc15;
    --color-accent-yellow-dark: #eab308;
    --color-navy: #0b328f;
    --color-navy-dark: #072266;

    /* Backgrounds */
    --body-bg: #008232;
    --app-bg: #ffffff;
    --app-header-bg: #40aa3b;
    --app-top-banner-bg: #006b29;
    --app-dark-bg: #0d131a;
    --app-gray-bg: #f8fafc;
    --app-border: #e2e8f0;

    /* Text Colors */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Typography */
    --font-heading: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Mobile Container Width */
    --mobile-width: 480px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--body-bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ==========================================================================
   MOBILE APP CONTAINER
   ========================================================================== */
.mobile-app-wrapper {
    width: 100%;
    max-width: var(--mobile-width);
    min-height: 100vh;
    background: var(--app-bg);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 75px;
}

/* ==========================================================================
   TOP SMART APP BANNER
   ========================================================================== */
.top-app-banner {
    background: linear-gradient(90deg, #004d1d 0%, #006e2b 100%);
    color: var(--text-white);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.8rem;
    z-index: 100;
}

.top-banner-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-banner-close {
    background: transparent;
    border: none;
    color: #a7f3d0;
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 2px;
}

.top-banner-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    background: #ffffff;
}

.top-banner-info {
    display: flex;
    flex-direction: column;
}

.top-banner-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #ffffff;
}

.top-banner-reward {
    display: inline-block;
    background: #facc15;
    color: #004d1d;
    font-weight: 900;
    font-size: 0.72rem;
    padding: 1px 5px;
    border-radius: 3px;
    margin-top: 1px;
    width: fit-content;
}

.btn-top-download {
    background: #00a843;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-top-download:hover {
    background: #00c850;
    transform: scale(1.03);
}

/* ==========================================================================
   APP HEADER
   ========================================================================== */
.app-header {
    background: linear-gradient(180deg, #52be4c 0%, #40aa3b 100%);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.app-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}

.btn-hamburger span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.app-logo {
    display: flex;
    align-items: center;
}

.app-logo img {
    max-height: 38px;
    width: auto;
    object-fit: contain;
}

.app-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-header-login {
    background: var(--color-navy);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(11, 50, 143, 0.3);
    transition: all 0.2s ease;
}

.btn-header-login:hover {
    background: var(--color-navy-dark);
}

.btn-header-register {
    background: linear-gradient(180deg, #ffe033 0%, #facc15 100%);
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(250, 204, 21, 0.4);
    position: relative;
    transition: all 0.2s ease;
}

.btn-header-register:hover {
    background: #facc15;
    transform: translateY(-1px);
}

/* ==========================================================================
   MOBILE DRAWER NAVIGATION
   ========================================================================== */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: #0f172a;
    color: #ffffff;
    z-index: 1001;
    padding: 24px 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #1e293b;
}

.drawer-close {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links li {
    margin-bottom: 12px;
}

.drawer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: #cbd5e1;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

.drawer-links a:hover {
    background: #1e293b;
    color: #10b981;
}

/* ==========================================================================
   APP CONTENT SECTIONS
   ========================================================================== */
.app-content {
    padding: 20px 16px;
}

/* Hero Section */
.app-hero-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 14px;
}

.app-hero-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.btn-app-action {
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    background: linear-gradient(180deg, #00a641 0%, #008232 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 144, 56, 0.35);
    text-align: center;
    transition: all 0.2s ease;
}

.btn-app-action:hover {
    background: #00732c;
    transform: translateY(-2px);
}

.app-featured-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background: #0f172a;
}

.app-featured-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Common */
.app-section-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: #009038;
    border-radius: 2px;
}

/* Jackpot Ticker Box */
.app-jackpot-ticker {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: 2px solid #facc15;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    color: #ffffff;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
}

.jackpot-ticker-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: #facc15;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.jackpot-ticker-amount {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.6);
    letter-spacing: 1px;
}

/* Live Winners Feed */
.app-live-winners {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 25px;
}

.live-winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 0.78rem;
}

.live-winner-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.winner-user {
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.winner-amount {
    font-family: var(--font-heading);
    font-weight: 900;
    color: #009038;
}

/* Live RTP Grid */
.app-rtp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.app-rtp-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.app-rtp-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.app-rtp-bar-wrap {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
    margin: 6px 0;
}

.app-rtp-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #009038);
    border-radius: 3px;
}

.app-rtp-val {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: #009038;
}

/* 2x2 Games Grid */
.app-games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}

.app-game-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.app-game-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 14px rgba(0, 144, 56, 0.15);
    transform: translateY(-2px);
}

.app-game-img-wrap {
    position: relative;
    height: 120px;
    background: #0f172a;
}

.app-game-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-game-card-body {
    padding: 10px 12px;
}

.app-game-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 4px;
}

.app-game-category {
    font-size: 0.75rem;
    color: #009038;
    font-weight: 700;
    text-transform: uppercase;
}

/* Jam Gacor Slots Schedule Card */
.app-schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.schedule-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 8px;
    text-align: center;
}

.schedule-time {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    color: #009038;
    margin-bottom: 2px;
}

.schedule-desc {
    font-size: 0.68rem;
    color: #64748b;
    line-height: 1.3;
}

/* VIP Loyalty Tiering */
.app-vip-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 25px;
}

.vip-tier-item {
    background: #0f172a;
    color: #ffffff;
    border-radius: 6px;
    padding: 10px 4px;
    text-align: center;
}

.vip-tier-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #facc15;
    margin-bottom: 2px;
}

.vip-tier-perk {
    font-size: 0.65rem;
    color: #94a3b8;
}

/* Promotions List */
.app-promos-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.app-promo-card {
    background: linear-gradient(135deg, #004d1d 0%, #00732c 100%);
    color: #ffffff;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 77, 29, 0.2);
}

.app-promo-tag {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    background: #facc15;
    color: #0f172a;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 4px;
}

.app-promo-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.2;
}

.app-promo-btn {
    background: #ffffff;
    color: #004d1d;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 8px 14px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Information Table */
.app-table-info {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    margin-bottom: 25px;
    font-size: 0.8rem;
}

.app-table-info th, .app-table-info td {
    padding: 10px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.app-table-info th {
    background: #f8fafc;
    color: #475569;
    text-align: left;
    font-weight: 700;
    width: 40%;
}

.app-table-info td {
    color: #0f172a;
    font-weight: 600;
}

/* Trust Badges */
.app-trust-box {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    text-align: center;
}

.app-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-trust-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.app-trust-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
}

/* 3 Easy Steps */
.app-steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.app-step-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.app-step-num {
    width: 38px;
    height: 38px;
    background: #009038;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-step-content h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
}

.app-step-content p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
}

/* VIP Features Grid */
.app-vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.app-vip-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 12px;
}

.app-vip-card-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.app-vip-card h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.app-vip-card p {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Security Compliance Badges */
.app-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.security-badge-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 6px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #334155;
}

/* Payment Methods Grid */
.app-payments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.app-payment-pill {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 8px 4px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    color: #1e293b;
}

/* Provider Mini Badges */
.app-providers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 25px;
}

.app-provider-pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 6px;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    color: #334155;
    text-transform: uppercase;
}

/* Articles Feed */
.app-article-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: all 0.2s ease;
}

.app-article-item:hover {
    border-color: #009038;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.app-article-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #0f172a;
}

.app-article-info {
    flex: 1;
}

.app-article-title {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.35;
    margin-bottom: 4px;
}

.app-article-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* FAQ Accordion Items */
.app-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.app-faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
}

.app-faq-question {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-faq-answer {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Testimonial Cards */
.app-reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.app-review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
}

.app-review-stars {
    color: #facc15;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.app-review-text {
    font-size: 0.8rem;
    color: #475569;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 8px;
}

.app-review-author {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    color: #0f172a;
    display: flex;
    justify-content: space-between;
}

/* Tips Guide Section */
.app-tips-card {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 25px;
}

.app-tips-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: #166534;
}

.app-tips-item:last-child {
    margin-bottom: 0;
}

/* Official Support Channels */
.app-support-channels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.support-channel-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    display: block;
}

.support-channel-card:hover {
    border-color: #009038;
}

.support-channel-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

.support-channel-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: #0f172a;
}

/* App Footer */
.app-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 24px 16px;
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid #1e293b;
    margin-top: 20px;
}

.app-footer-brand {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.app-footer-brand img {
    max-height: 36px;
}

.app-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.app-footer-links a {
    color: #cbd5e1;
    font-weight: 600;
}

.app-footer-links a:hover {
    color: #10b981;
}

.sitemap-link {
    margin-bottom: 15px;
}

.sitemap-link a {
    color: #94a3b8;
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sitemap-link a:hover {
    color: #10b981;
    text-decoration: underline;
}

.app-disclaimer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #ef4444;
    color: #ef4444;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   FIXED BOTTOM DOCK BAR
   ========================================================================== */
.fixed-app-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--mobile-width);
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.btn-dock-login {
    flex: 1;
    background: linear-gradient(180deg, #1344b5 0%, #0b328f 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(11, 50, 143, 0.4);
    transition: all 0.2s;
}

.btn-dock-login:hover {
    background: #072266;
}

.btn-dock-register {
    flex: 1;
    background: linear-gradient(180deg, #ffe033 0%, #facc15 100%);
    color: #0f172a;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 6px;
    text-align: center;
    text-transform: capitalize;
    box-shadow: 0 2px 8px rgba(250, 204, 21, 0.4);
    transition: all 0.2s;
}

.btn-dock-register:hover {
    background: #facc15;
}

.btn-dock-close {
    width: 38px;
    height: 38px;
    background: #ffffff;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   NEW CASINO SECTIONS STYLING
   ========================================================================== */

/* Pola Gacor Pattern Cards */
.app-pattern-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.app-pattern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 8px;
}

.app-pattern-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: #0f172a;
}

.app-pattern-rate {
    background: #dcfce7;
    color: #166534;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 12px;
}

.app-pattern-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.app-pattern-step-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
}

.app-pattern-step-name {
    color: #334155;
    font-weight: 600;
}

.app-pattern-step-val {
    font-weight: 800;
    color: #009038;
}

/* Tournament Leaderboard Section */
.app-tournament-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
    border-radius: 10px;
    padding: 16px;
    color: #ffffff;
    border: 1px solid #312e81;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.app-tournament-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.25) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.tournament-prize-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: #facc15;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tournament-prize-val {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(250, 204, 21, 0.5);
    margin: 4px 0 12px;
}

.tournament-ranks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tournament-rank-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}

.tournament-rank-pos {
    font-weight: 900;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.rank-1 { background: #facc15; color: #0f172a; }
.rank-2 { background: #cbd5e1; color: #0f172a; }
.rank-3 { background: #f97316; color: #ffffff; }

/* Mobile APK Features Grid */
.app-perks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.app-perk-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.app-perk-icon {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.app-perk-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    color: #0f172a;
    margin-bottom: 4px;
}

.app-perk-desc {
    font-size: 0.72rem;
    color: #64748b;
    line-height: 1.4;
}

/* Referral Program Box */
.app-referral-card {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    border-radius: 10px;
    padding: 16px;
    color: #ffffff;
    margin-bottom: 25px;
    border: 1px solid #059669;
}

.app-referral-badge {
    display: inline-block;
    background: #facc15;
    color: #064e3b;
    font-weight: 900;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.app-referral-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.app-referral-desc {
    font-size: 0.8rem;
    color: #d1fae5;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Deposit & Withdraw Guide Box */
.app-guide-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 25px;
}

.app-guide-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.app-guide-tab {
    flex: 1;
    background: #009038;
    color: #ffffff;
    text-align: center;
    padding: 8px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
}

/* ==========================================================================
   SHOW PAGE ARTICLE STYLES
   ========================================================================== */
.show-article-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 18px 16px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.show-article-body {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.75;
}

.show-article-body p {
    margin-bottom: 16px;
}

.show-article-body h2, .show-article-body h3 {
    font-family: var(--font-heading);
    color: #0f172a;
    font-size: 1.15rem;
    margin: 20px 0 10px;
}