:root {
    --bs-body-font-family: 'Google Sans', sans-serif;
    --gold-primary: #aa863a;
    --gold-light: #f3e5ab;
    --gold-dark: #816222;
    --gold-gradient: linear-gradient(to bottom, #deb861 0%, #aa863a 100%);
    --gold-text-gradient: linear-gradient(to bottom, #fff8db 0%, #deb861 100%);
}

[data-bs-theme="dark"] {
    /* Pure black background */
    --bs-body-bg: #000000;
    --bs-body-bg-rgb: 0, 0, 0;

    /* Darker container/card background to blend with black (instead of default gray) */
    --bs-tertiary-bg: #111111;
    --bs-tertiary-bg-rgb: 17, 17, 17;

    /* Subtler borders */
    --bs-border-color: #222222;
}

body {
    font-family: var(--bs-body-font-family);
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* Typography Adjustments */
h1,
.h1,
.display-3 {
    font-size: clamp(2rem, 5vw + 1rem, 3.5rem) !important;
    line-height: 1.2;
}

h2,
.h2,
.display-6 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem) !important;
    line-height: 1.3;
}

h3,
.h3 {
    font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem) !important;
    line-height: 1.4;
}

/* Max container width: 1140px */
.container {
    max-width: 1140px !important;
}

/* Custom Gold Utilities */
.text-gold {
    color: var(--gold-primary) !important;
}

.text-gold-gradient {
    background: var(--gold-text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gold {
    background: var(--gold-gradient);
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 15px rgba(222, 184, 97, 0.3);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(to bottom, #ebd08d 0%, #c49a45 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(222, 184, 97, 0.5);
}

.btn-outline-gold {
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    background: transparent;
    font-weight: bold;
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #000;
}

/* Hero Section */
.hero-section {
    background: url('img/hero-bg.webp') center/cover;
    position: relative;
    padding-top: 50px;
    padding-bottom: 20px;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(170, 134, 58, 0.2) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(to right, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Feature Section */
.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    border: 1px solid #333;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(170, 134, 58, 0.1);
}

.feature-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

/* Deposit Details */
.deposit-card {
    background: linear-gradient(145deg, #111 0%, #000 100%);
    border: 1px solid #222;
    position: relative;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.deposit-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 13px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(170, 134, 58, 0.3), transparent 60%);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}


/* Promo Section */
.promo-section {
    background: linear-gradient(180deg, #000 0%, #151000 50%, #000 100%);
    position: relative;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.promo-card {
    background: linear-gradient(90deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.8) 100%);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

/* Partner Logos */
.partner-logo {
    transition: all 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    font-size: 0.9rem;
}

.footer-logo-sm {
    max-height: 25px;
    width: auto;
}

/* =========================================
   Deposit Section Enhancements (Static Premium)
   ========================================= */

/* Target specifically the card within the deposit section */
.deposit-section .promo-card {
    /* Stronger Border and Shadow for Standout Effect */
    border: 1px solid var(--gold-primary);
    /* Full gold border */
    box-shadow: 0 0 55px rgba(170, 134, 58, 0.55);
    /* Intense glow */
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.9) 100%);

    /* Slight Scale Up to make it bigger than others naturally */
    transform: scale(1.02);
}