/*
Theme Name: AffiliateEngine
Theme URI: https://affiliateengine.dev
Author: Developer
Author URI: https://affiliateengine.dev
Description: WordPress Theme Framework tối ưu tốc độ build web Affiliate. Trang chủ clone-ready, Blog & Single có sẵn khung sườn tiêu chuẩn.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: flavor
*/

/* ═══════════════════════════════════════════════
   ROOT VARIABLES — VegaStars Dark Casino Theme
   ═══════════════════════════════════════════════ */
:root {
    --dark-bg: #1a1d29;
    --dark-card: #252833;
    --dark-border: #2e3245;
    --accent: #f5a623;
    --accent-hover: #e6951a;
}

/* Reset cơ bản */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════
   CUSTOM SCROLLBAR — ẩn cho scroll ngang
   ═══════════════════════════════════════════════ */
.scroll-hidden::-webkit-scrollbar {
    display: none;
}

.scroll-hidden {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ═══════════════════════════════════════════════
   HERO SLIDER DOTS
   ═══════════════════════════════════════════════ */
.slider-dot {
    width: 28px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent);
    width: 36px;
}

/* ═══════════════════════════════════════════════
   DEPOSIT FORM — Quick Amount Buttons
   ═══════════════════════════════════════════════ */
.amount-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.amount-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ═══════════════════════════════════════════════
   GAME CATEGORY NAV
   ═══════════════════════════════════════════════ */
.category-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.category-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.category-tab.active {
    color: #fff;
    background: var(--accent);
}

/* ═══════════════════════════════════════════════
   LIVE WINS TABS
   ═══════════════════════════════════════════════ */
.wins-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #9ca3af;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.wins-tab:hover {
    color: #fff;
}

.wins-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* ═══════════════════════════════════════════════
   WINNER CARD
   ═══════════════════════════════════════════════ */
.winner-card {
    min-width: 110px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.winner-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}