/* ============================================
   COINRUSH THEME - main.css (moban-80)
   Classic Slots Theme with Gold Coins & Vault
   Colors: #0D0D0D, #FFD700, #228B22
   Fonts: Bungee (headings) + Varela Round (body)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Varela Round', sans-serif;
    background: #0D0D0D;
    color: #F5F5DC;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bungee', cursive;
    font-weight: 400;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: #FFD700;
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gold-text {
    color: #FFD700;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes coinRain {
    0% {
        transform: translateY(-100px) rotateY(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(700px) rotateY(720deg) scale(1);
        opacity: 0;
    }
}

@keyframes goldShimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes vaultOpen {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes jackpotFlash {
    0%, 100% {
        opacity: 0;
        background: radial-gradient(circle, rgba(255,215,0,0) 0%, transparent 70%);
    }
    15% {
        opacity: 1;
        background: radial-gradient(circle, rgba(255,215,0,0.4) 0%, transparent 70%);
    }
    30% {
        opacity: 0;
    }
    45% {
        opacity: 0.8;
        background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, transparent 60%);
    }
    60% {
        opacity: 0;
    }
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes coinBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.2); }
}

@keyframes feltPattern {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes countUp {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes notificationScroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes vaultHandleTurn {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* === GOLD SHIMMER TEXT === */
.gold-shimmer {
    background: linear-gradient(
        90deg,
        #FFD700 0%,
        #FFF8DC 25%,
        #FFD700 50%,
        #DAA520 75%,
        #FFD700 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}

/* === COIN RAIN (CSS fallback) === */
.coin-rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.coin-drop {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FFE066, #FFD700 40%, #DAA520 70%, #B8860B);
    box-shadow: inset -2px -2px 4px rgba(0,0,0,0.3), 0 0 8px rgba(255,215,0,0.3);
    animation: coinRain linear infinite;
    opacity: 0;
}

.coin-drop::after {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #B8860B;
    font-weight: bold;
    font-size: 14px;
    font-family: 'Bungee', cursive;
}

.coin-drop:nth-child(1) { left: 5%; width: 25px; height: 25px; animation-duration: 4s; animation-delay: 0s; }
.coin-drop:nth-child(2) { left: 15%; width: 35px; height: 35px; animation-duration: 5s; animation-delay: 0.5s; }
.coin-drop:nth-child(3) { left: 25%; width: 20px; height: 20px; animation-duration: 3.5s; animation-delay: 1s; }
.coin-drop:nth-child(4) { left: 35%; width: 30px; height: 30px; animation-duration: 4.5s; animation-delay: 0.3s; }
.coin-drop:nth-child(5) { left: 45%; width: 28px; height: 28px; animation-duration: 5.5s; animation-delay: 1.5s; }
.coin-drop:nth-child(6) { left: 55%; width: 32px; height: 32px; animation-duration: 4s; animation-delay: 0.8s; }
.coin-drop:nth-child(7) { left: 65%; width: 22px; height: 22px; animation-duration: 3.8s; animation-delay: 2s; }
.coin-drop:nth-child(8) { left: 75%; width: 26px; height: 26px; animation-duration: 4.2s; animation-delay: 1.2s; }
.coin-drop:nth-child(9) { left: 85%; width: 34px; height: 34px; animation-duration: 5s; animation-delay: 0.7s; }
.coin-drop:nth-child(10) { left: 95%; width: 24px; height: 24px; animation-duration: 4.8s; animation-delay: 1.8s; }
.coin-drop:nth-child(11) { left: 10%; width: 28px; height: 28px; animation-duration: 4.3s; animation-delay: 2.5s; }
.coin-drop:nth-child(12) { left: 30%; width: 22px; height: 22px; animation-duration: 3.6s; animation-delay: 3s; }
.coin-drop:nth-child(13) { left: 50%; width: 36px; height: 36px; animation-duration: 5.2s; animation-delay: 0.2s; }
.coin-drop:nth-child(14) { left: 70%; width: 20px; height: 20px; animation-duration: 3.9s; animation-delay: 2.8s; }
.coin-drop:nth-child(15) { left: 90%; width: 30px; height: 30px; animation-duration: 4.6s; animation-delay: 1.4s; }

/* === VAULT DOOR === */
.vault-door {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    animation: vaultOpen 8s ease-in-out infinite;
}

.vault-outer-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 8px solid #B8860B;
    background: radial-gradient(circle, #1a1a1a 0%, #0D0D0D 100%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.2), inset 0 0 20px rgba(255, 215, 0, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vault-inner-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #DAA520;
    background: radial-gradient(circle, #222 0%, #111 100%);
}

.vault-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    animation: vaultHandleTurn 6s linear infinite;
}

.vault-spokes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
}

.vault-spokes span {
    position: absolute;
    width: 4px;
    height: 50px;
    background: linear-gradient(to bottom, #DAA520, transparent);
    top: 0;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%);
    border-radius: 2px;
}

.vault-spokes span:nth-child(1) { transform: translateX(-50%) rotate(0deg); }
.vault-spokes span:nth-child(2) { transform: translateX(-50%) rotate(90deg); }
.vault-spokes span:nth-child(3) { transform: translateX(-50%) rotate(180deg); }
.vault-spokes span:nth-child(4) { transform: translateX(-50%) rotate(270deg); }

/* === JACKPOT FLASH === */
.jackpot-flash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    animation: jackpotFlash 6s ease-in-out infinite;
}

/* === FELT BACKGROUND === */
.felt-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 139, 34, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(34, 139, 34, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #0D0D0D 0%, #111 40%, #0f1a0f 100%);
    z-index: 0;
}

/* === HEADER === */
.site-header {
    background: linear-gradient(180deg, #0D0D0D 0%, #111111 100%);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
}

.header-time {
    color: #F5F5DC;
    font-size: 14px;
    opacity: 0.7;
}

.header-btn-group {
    display: flex;
    gap: 10px;
}

.btn-login {
    padding: 8px 20px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 4px;
    color: #FFD700;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-login:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

.btn-register {
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    border-radius: 4px;
    color: #0D0D0D;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-register:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #0D0D0D;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-demo {
    padding: 8px 20px;
    border: 1px solid rgba(34, 139, 34, 0.5);
    border-radius: 4px;
    color: #228B22;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s;
}

.btn-demo:hover {
    border-color: #228B22;
    color: #2ECC40;
    background: rgba(34, 139, 34, 0.1);
}

/* === NAVIGATION === */
.main-navigation {
    background: rgba(13, 13, 13, 0.95);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 18px;
    color: #F5F5DC;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-link i {
    margin-right: 5px;
    color: #FFD700;
    font-size: 12px;
}

.has-dropdown .nav-link::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 10px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* === NOTIFICATION BAR === */
.notification-bar {
    background: linear-gradient(90deg, #0D0D0D, #1a1a0d, #0D0D0D);
    padding: 8px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

.notification-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: notificationScroll 30s linear infinite;
    color: #F5F5DC;
    font-size: 13px;
    opacity: 0.8;
}

.notification-content span {
    color: #FFD700;
}

/* === ANNOUNCEMENT MODAL === */
.announcement-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.announcement-modal.active {
    display: flex;
}

.announcement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.92);
}

.announcement-content {
    position: relative;
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.15);
}

.announcement-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #F5F5DC;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
}

.announcement-close:hover {
    color: #FFD700;
}

.announcement-header-icon {
    text-align: center;
    margin-bottom: 15px;
}

.announcement-header-icon i {
    font-size: 48px;
    color: #FFD700;
    animation: floatUp 3s ease-in-out infinite;
}

.announcement-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Bungee', cursive;
}

.announcement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(13, 13, 13, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.announcement-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
}

.announcement-badge {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    min-width: 40px;
    text-align: center;
}

.announcement-badge.hot {
    background: #ff4444;
    color: #fff;
}

.announcement-badge.new {
    background: #228B22;
    color: #fff;
}

.announcement-badge.info {
    background: #3399ff;
    color: #fff;
}

.announcement-text {
    flex: 1;
    color: #F5F5DC;
    font-size: 13px;
}

.announcement-item i {
    color: #FFD700;
    font-size: 12px;
}

.announcement-footer {
    text-align: center;
}

.announcement-cta {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #0D0D0D;
    font-weight: 700;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.announcement-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: #0D0D0D;
}

/* === BUTTONS === */
.btn-gold-primary {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #0D0D0D;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Bungee', cursive;
}

.btn-gold-primary:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-shadow: none;
}

.btn-outline-gold {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: transparent;
    font-family: 'Bungee', cursive;
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* === SECTION COMMON === */
.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Bungee', cursive;
    letter-spacing: 2px;
}

.section-title i {
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    color: #F5F5DC;
    opacity: 0.7;
    font-size: 15px;
    margin-bottom: 40px;
}

/* === 1. COINRUSH HERO === */
.coinrush-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0D0D0D 0%, #111 40%, #0f1a0f 100%);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(34, 139, 34, 0.2);
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}

.hero-main-title {
    margin-bottom: 25px;
}

.hero-brand {
    display: block;
    font-size: 56px;
    font-weight: 400;
    color: #FFD700;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    font-family: 'Bungee', cursive;
}

.hero-divider-line {
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    margin: 15px auto;
}

.hero-tagline {
    display: block;
    font-size: 22px;
    color: #228B22;
    letter-spacing: 4px;
    font-weight: 400;
    font-family: 'Bungee', cursive;
}

.hero-description {
    font-size: 16px;
    color: #F5F5DC;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 28px;
    font-weight: 400;
    color: #FFD700;
    font-family: 'Bungee', cursive;
}

.hero-stat-label {
    display: block;
    font-size: 12px;
    color: #F5F5DC;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* === 2. GOLD GAME CARDS === */
.gold-games {
    padding: 60px 0;
}

.gold-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gold-game-card {
    position: relative;
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
    overflow: hidden;
    display: block;
}

.gold-game-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.gold-game-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gold-game-card:hover .gold-game-glow {
    opacity: 1;
}

.gold-game-icon {
    margin-bottom: 15px;
}

.gold-game-icon i {
    font-size: 40px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    animation: coinBounce 2s ease-in-out infinite;
}

.gold-game-rating {
    margin-bottom: 12px;
}

.gold-game-rating i {
    color: #FFD700;
    font-size: 12px;
    margin: 0 1px;
}

.gold-game-card h3 {
    font-size: 18px;
    color: #F5F5DC;
    margin-bottom: 10px;
    font-family: 'Bungee', cursive;
}

.gold-game-card p {
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gold-game-players {
    font-size: 12px;
    color: #228B22;
    opacity: 0.8;
}

.gold-game-players i {
    margin-right: 4px;
}

/* === 3. VAULT GRID (3x4) === */
.vault-grid {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.5), rgba(26, 26, 13, 0.5));
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.vault-grid-map {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 20px;
}

.vault-grid-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.vault-grid-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.vault-grid-node:hover {
    transform: scale(1.1);
}

.node-coin {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FFE066, #FFD700 40%, #DAA520 70%, #B8860B);
    border: 3px solid #B8860B;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    animation: pulseGlow 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.vault-grid-node:hover .node-coin {
    border-color: #FFD700;
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
    animation: coinSpin 1s linear;
}

.node-coin i {
    color: #8B6914;
    font-size: 20px;
}

.node-label {
    font-size: 12px;
    color: #F5F5DC;
    text-align: center;
    font-weight: 500;
}


/* === 4. VAULT FEATURES === */
.vault-features {
    padding: 60px 0;
}

.vault-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vault-feature-card {
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s;
}

.vault-feature-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.vault-feature-icon {
    margin-bottom: 20px;
}

.vault-feature-icon i {
    font-size: 40px;
    color: #FFD700;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.vault-feature-card h3 {
    font-size: 16px;
    color: #F5F5DC;
    margin-bottom: 12px;
    font-family: 'Bungee', cursive;
}

.vault-feature-card p {
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.7;
    line-height: 1.7;
}

/* === 5. GOLD STATS === */
.gold-stats {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, #0D0D0D, #111, #0f1a0f);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    border: 1px solid rgba(34, 139, 34, 0.15);
}

.gold-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.coin-particles {
    width: 100%;
    height: 100%;
    position: relative;
}

.gold-stats .section-title,
.gold-stats .section-subtitle {
    position: relative;
    z-index: 1;
}

.gold-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.gold-stat-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.gold-stat-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
}

.stat-coin-decoration {
    margin-bottom: 10px;
}

.stat-coin-decoration i {
    color: #FFD700;
    font-size: 14px;
    animation: coinBounce 2s ease-in-out infinite;
}

.stat-coin-decoration.bottom {
    margin-top: 10px;
    margin-bottom: 0;
}

.stat-number {
    font-size: 42px;
    font-weight: 400;
    color: #FFD700;
    font-family: 'Bungee', cursive;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === 6. GOLD PROMOTIONS === */
.gold-promos {
    padding: 60px 0;
}

.gold-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gold-promo-card {
    position: relative;
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
}

.gold-promo-card:hover {
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.promo-coin-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promo-coin-bg::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255,224,102,0.1), rgba(255,215,0,0.05) 50%, transparent 70%);
}

.gold-promo-inner {
    position: relative;
    z-index: 1;
    padding: 30px;
    text-align: center;
}

.gold-promo-inner .promo-icon {
    margin-bottom: 15px;
}

.gold-promo-inner .promo-icon i {
    font-size: 40px;
    color: #FFD700;
}

.gold-promo-inner h3 {
    font-size: 18px;
    color: #FFD700;
    margin-bottom: 12px;
    font-family: 'Bungee', cursive;
}

.gold-promo-inner p {
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 15px;
}

.promo-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    color: #F5F5DC;
    opacity: 0.6;
}

.promo-badge {
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.promo-badge.hot {
    background: #ff4444;
    color: #fff;
}

.promo-badge.new {
    background: #228B22;
    color: #fff;
}

.promo-badge.vip {
    background: #FFD700;
    color: #0D0D0D;
}

.btn-promo {
    display: inline-block;
    padding: 10px 30px;
    background: linear-gradient(135deg, #FFD700, #DAA520);
    color: #0D0D0D;
    font-weight: 700;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: 'Bungee', cursive;
}

.btn-promo:hover {
    background: linear-gradient(135deg, #DAA520, #FFD700);
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-shadow: none;
}

/* === 7. FOOTER CTA === */
.footer-cta-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #0D0D0D, #111, #0f1a0f);
    border-radius: 12px;
    margin: 20px 0;
    overflow: hidden;
    text-align: center;
    border: 1px solid rgba(34, 139, 34, 0.15);
}

.footer-cta-coinfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.coin-particles-layer {
    width: 100%;
    height: 100%;
    position: relative;
}

.footer-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-vault-decoration {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.cta-vault-outer {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #DAA520;
    background: radial-gradient(circle, #222 0%, #111 100%);
    position: relative;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-vault-inner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.footer-cta-inner h2 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 15px;
    font-family: 'Bungee', cursive;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.footer-cta-inner p {
    font-size: 16px;
    color: #F5F5DC;
    opacity: 0.85;
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.cta-feature {
    font-size: 14px;
    color: #F5F5DC;
    opacity: 0.8;
}

.cta-feature i {
    color: #FFD700;
    margin-right: 6px;
}

.cta-main-btn {
    font-size: 18px;
    padding: 16px 50px;
}

/* === NEWS SECTION === */
.home-news-section {
    padding: 60px 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.home-news-placeholder {
    display: contents;
}

.article-card {
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
}

.article-card:hover {
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.article-card-thumb {
    height: 200px;
    overflow: hidden;
}

.article-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.article-card:hover .article-card-thumb img {
    transform: scale(1.05);
}

.article-card-title {
    padding: 15px 15px 8px;
    font-size: 15px;
    font-weight: 600;
    color: #F5F5DC;
    line-height: 1.4;
    min-height: 55px;
}

.article-card-title span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    padding: 0 15px;
    font-size: 12px;
    color: #F5F5DC;
    opacity: 0.5;
    display: flex;
    gap: 15px;
}

.article-card-meta i {
    margin-right: 4px;
    color: #FFD700;
}

.article-card-excerpt {
    padding: 10px 15px 15px;
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.65;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-more {
    display: block;
    padding: 12px 15px;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    color: #FFD700;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}

.article-card-more:hover {
    background: rgba(255, 215, 0, 0.05);
}

.article-card-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.article-card:hover .article-card-more i {
    transform: translateX(3px);
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 12px 30px;
    border: 2px solid #FFD700;
    border-radius: 8px;
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
    max-width: 200px;
    margin: 0 auto;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    transform: translateY(-2px);
}

.view-more-btn i {
    margin-left: 5px;
}


/* === FOOTER === */
.site-footer {
    background: linear-gradient(180deg, #0D0D0D 0%, #080808 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.15);
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #FFD700;
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Bungee', cursive;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #F5F5DC;
    opacity: 0.6;
    font-size: 13px;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: #FFD700;
    padding-left: 5px;
}

.footer-brand-logo img {
    height: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.2));
}

.footer-brand-text {
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.6;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-18plus {
    display: inline-block;
    padding: 4px 12px;
    border: 2px solid #ff4444;
    border-radius: 4px;
    color: #ff4444;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F5DC;
    transition: all 0.3s;
}

.footer-social-links a:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
}

/* Footer License */
.footer-license-bar {
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    padding-top: 25px;
    margin-bottom: 20px;
    text-align: center;
}

.footer-license-bar h4 {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Bungee', cursive;
}

.license-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.license-item i {
    font-size: 24px;
    color: #FFD700;
    opacity: 0.6;
}

.license-item span {
    font-size: 11px;
    color: #F5F5DC;
    opacity: 0.5;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    padding-top: 15px;
    text-align: center;
}

.footer-copyright {
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.5;
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 12px;
    color: #F5F5DC;
    opacity: 0.35;
}

/* === SIDEBAR FLOATING === */
.floating-sidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
}

.sidebar-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    transform: scale(1.1);
    color: #FFD700;
}

.sidebar-btn-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #fff;
}

.sidebar-btn-telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
}

.sidebar-label {
    display: none;
    position: absolute;
    right: 55px;
    background: #111;
    color: #FFD700;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.sidebar-btn:hover .sidebar-label {
    display: block;
}

/* === BREADCRUMB === */
.breadcrumb {
    padding: 15px 0;
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #FFD700;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* === CONTENT AREA === */
.content-area {
    display: flex;
    gap: 25px;
    padding: 20px 0;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* === CATEGORY HEADER === */
.category-header {
    text-align: center;
    padding: 30px 0;
}

.category-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.category-desc {
    font-size: 14px;
    color: #F5F5DC;
    opacity: 0.7;
}

/* === PROVIDER TABS === */
.provider-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 0 15px;
}

.provider-tab {
    padding: 8px 18px;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 20px;
    color: #F5F5DC;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.provider-tab:hover,
.provider-tab.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

/* === ARTICLE GRID === */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #F5F5DC;
    opacity: 0.5;
}

/* === PAGINATION === */
.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(17, 17, 17, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.12);
    color: #F5F5DC;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #FFD700;
    color: #FFD700;
}

/* === SINGLE ARTICLE === */
.single-article {
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.article-header {
    margin-bottom: 25px;
}

.article-title {
    font-size: 28px;
    color: #F5F5DC;
    margin-bottom: 15px;
    font-family: 'Bungee', cursive;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #F5F5DC;
    opacity: 0.6;
}

.article-meta i {
    color: #FFD700;
    margin-right: 4px;
}

.article-meta a {
    color: #FFD700;
    opacity: 1;
}

.article-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
}

.article-featured-img img {
    width: 100%;
    border-radius: 8px;
}

.article-content {
    font-size: 15px;
    color: #F5F5DC;
    line-height: 1.8;
}

.article-content h2,
.article-content h3 {
    color: #FFD700;
    margin: 25px 0 12px;
}

.article-content p {
    margin-bottom: 15px;
}

.article-content a {
    color: #FFD700;
    text-decoration: underline;
}

.article-content img {
    border-radius: 8px;
    margin: 15px 0;
}

.article-content blockquote {
    border-left: 3px solid #FFD700;
    padding: 15px 20px;
    margin: 20px 0;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 0 8px 8px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
    margin-top: 25px;
}

.article-tags i {
    color: #FFD700;
    margin-right: 5px;
}

.article-tags span {
    padding: 4px 12px;
    background: rgba(255, 215, 0, 0.08);
    border-radius: 15px;
    font-size: 12px;
    color: #FFD700;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.08);
}

.article-nav-prev a,
.article-nav-next a {
    color: #FFD700;
    font-size: 14px;
}

/* === RELATED POSTS === */
.related-posts {
    margin-bottom: 30px;
}

.related-posts-title {
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Bungee', cursive;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.related-item {
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: block;
}

.related-item:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.related-item-thumb {
    height: 120px;
    overflow: hidden;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item-title {
    padding: 10px;
    font-size: 13px;
    color: #F5F5DC;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE ARTICLE === */
.page-article {
    background: linear-gradient(135deg, #111, #1a1a0d);
    border: 1px solid rgba(255, 215, 0, 0.08);
    border-radius: 12px;
    padding: 30px;
}

.page-title {
    font-size: 28px;
    color: #F5F5DC;
    margin-bottom: 20px;
    font-family: 'Bungee', cursive;
}

.page-featured-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-featured-img img {
    width: 100%;
    border-radius: 8px;
}

.page-content {
    font-size: 15px;
    color: #F5F5DC;
    line-height: 1.8;
}

.page-content h2,
.page-content h3 {
    color: #FFD700;
    margin: 25px 0 12px;
}

.page-content p {
    margin-bottom: 15px;
}

/* === 404 ERROR PAGE === */
.error-page {
    text-align: center;
    padding: 80px 20px;
}

.error-coin {
    margin: 0 auto 30px;
    position: relative;
    width: 120px;
    height: 120px;
}

.error-coin-outer {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #FFE066, #FFD700 40%, #DAA520 70%, #B8860B);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: pulseGlow 3s ease-in-out infinite;
}

.error-coin-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: #8B6914;
}

.error-code {
    font-size: 80px;
    color: #FFD700;
    font-family: 'Bungee', cursive;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 10px;
}

.error-title {
    font-size: 24px;
    color: #F5F5DC;
    margin-bottom: 15px;
    font-family: 'Bungee', cursive;
}

.error-desc {
    font-size: 15px;
    color: #F5F5DC;
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === SWIPER CUSTOMIZATION === */
.swiper-pagination-bullet {
    background: #F5F5DC;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    background: #FFD700;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #FFD700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: #FFD700; }
.text-green { color: #228B22; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 215, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 215, 0, 0.4);
}

/* === SELECTION === */
::selection {
    background: rgba(255, 215, 0, 0.3);
    color: #fff;
}
