:root {
    --gold: #D4AF37;
    --dark: #0f0b0a;
    --card: #1a1513;
    --accent: #261e1b;
}

body {
    background-color: var(--dark);
    color: #f8f9fa;
    font-family: 'Inter', 'Kanit', sans-serif;
    margin-bottom: 120px !important;
}

.gold-text {
    color: var(--gold);
}

.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-bottom: 2px solid var(--gold);
}

/* Stats Box */
.stat-box {
    background: var(--card);
    border: 1px solid #333;
    border-radius: 12px;
    margin-top: -40px;
    position: relative;
    padding: 15px;
    z-index: 5;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing Cards */
.pkg-card {
    background: var(--card);
    border: 1px solid #333;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}

.featured {
    border: 2px solid var(--gold);
    background: var(--accent);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Upgrade Grid */
.upgrade-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 12px;
    transition: 0.2s;
    cursor: pointer;
}

.upgrade-box:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.x-small {
    font-size: 0.75rem;
}

/* --- MOBILE FAILSAFE FOOTER --- */
.sticky-footer {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(15, 11, 10, 0.98) !important;
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom)) 10px !important;
    z-index: 9999999 !important;
    backdrop-filter: blur(15px);
    border-top: 1px solid #333;
    display: block !important;
}

.footer-grid {
    display: grid !important;
    /* 2fr for the big button, 1fr each for the small buttons to make them equal */
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 8px !important;
    align-items: center;
    max-width: 850px;
    margin: 0 auto;
}

.f-btn {
    height: 55px !important;
    border-radius: 12px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border: none;
    white-space: nowrap;
}

.btn-book {
    background: var(--gold);
    color: #000 !important;
    font-weight: 800;
    font-size: 1rem;
}

.btn-live {
    background: #222;
    color: var(--gold) !important;
    border: 1px solid #444;
    flex-direction: column;
    line-height: 1.1;
}

.btn-live i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.btn-live span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-line-icon {
    background: #06C755;
    color: white !important;
    font-size: 1.7rem;
}

@media (max-width: 768px) {
    .featured {
        transform: scale(1);
        margin-top: 10px;
    }

    .btn-book {
        font-size: 0.9rem;
    }
}