/* =============================================
   GAMEVAULT — Main Stylesheet
   Font: Oxanium (display) + DM Sans (body)
   Accent: Electric Blue #2563EB / #3B82F6
   Theme: Gaming Dark/Light
   ============================================= */

/* === CSS VARIABLES === */
:root {
    --accent: #3B82F6;
    --accent-dark: #1D4ED8;
    --accent-glow: rgba(59,130,246,0.35);
    --accent-light: rgba(59,130,246,0.12);

    --font-display: 'Oxanium', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.25s ease;
}

/* === DARK THEME (default) === */
[data-theme="dark"] {
    --bg-primary: #0A0D14;
    --bg-secondary: #111827;
    --bg-card: #161D2E;
    --bg-card-hover: #1E2A40;
    --bg-input: #0F1624;
    --border: rgba(255,255,255,0.07);
    --border-accent: rgba(59,130,246,0.3);
    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-muted: #475569;
    --navbar-bg: rgba(10,13,20,0.92);
    --shadow: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-accent: 0 0 30px rgba(59,130,246,0.2);
    --gradient-hero: linear-gradient(135deg, #0A0D14 0%, #0F172A 50%, #0A0D14 100%);
}

/* === LIGHT THEME === */
[data-theme="light"] {
    --bg-primary: #F0F4FF;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #EFF6FF;
    --bg-input: #F8FAFF;
    --border: rgba(0,0,0,0.08);
    --border-accent: rgba(59,130,246,0.4);
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --navbar-bg: rgba(240,244,255,0.95);
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-accent: 0 0 30px rgba(59,130,246,0.12);
    --gradient-hero: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EFF6FF 100%);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: background var(--transition), color var(--transition);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.font-display { font-family: var(--font-display); }

.text-accent { color: var(--accent); }
.bg-accent { background: var(--accent); }
.text-muted { color: var(--text-muted) !important; }

/* === NAVBAR === */
.gv-navbar {
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
    padding: 0.75rem 0;
    z-index: 1000;
}

.gv-navbar.scrolled {
    box-shadow: var(--shadow-accent);
}

.gv-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 0 15px var(--accent-glow);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.logo-text .accent { color: var(--accent); }

.gv-navbar .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.gv-navbar .nav-link:hover,
.gv-navbar .nav-link.active {
    color: var(--accent);
    background: var(--accent-light);
}

/* === THEME TOGGLE === */
.btn-theme-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.95rem;
}

.btn-theme-toggle:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

/* === BUTTONS === */
.gv-btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.55rem 1.4rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    transition: all var(--transition);
    box-shadow: 0 4px 15px var(--accent-glow);
    cursor: pointer;
}

.gv-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
    color: #fff;
}

.gv-btn-outline {
    background: transparent;
    border: 1px solid var(--border-accent);
    color: var(--accent);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.35rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    transition: all var(--transition);
    cursor: pointer;
}

.gv-btn-outline:hover {
    background: var(--accent-light);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-gv-lg {
    padding: 0.85rem 2.2rem;
    font-size: 1rem;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* === CARDS === */
.gv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    overflow: hidden;
}

.gv-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
    transform: translateY(-4px);
}

/* === GAME CARD === */
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.game-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 25px var(--accent-glow), var(--shadow);
    transform: translateY(-6px);
}

.game-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-card-img { transform: scale(1.06); }

.game-card-body {
    padding: 0.85rem 1rem;
}

.game-card-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-publisher {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.game-card-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* === HERO SECTION === */
.hero-section {
    background: var(--gradient-hero);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.35;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #7C3AED, transparent 70%);
    bottom: -100px;
    left: 5%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* === SWIPER HERO === */
.hero-swiper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-swiper .swiper-pagination-bullet { background: var(--text-muted); }
.hero-swiper .swiper-pagination-bullet-active { background: var(--accent); }

/* === SECTION TITLES === */
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    font-family: var(--font-display);
}

/* === FLASH SALE TIMER === */
.flash-timer {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.timer-box {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
}

.timer-sep { color: var(--accent); font-weight: 700; }

/* === PRODUCT / NOMINAL CARD === */
.nominal-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
}

.nominal-card:hover,
.nominal-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.nominal-card .nominal-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.nominal-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.nominal-price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.nominal-price-original {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.nominal-card .badge-selected {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 0 var(--radius) 0 var(--radius-sm);
    display: none;
}

.nominal-card.selected .badge-selected { display: block; }

/* === FORMS === */
.gv-form-group {
    margin-bottom: 1.25rem;
}

.gv-label {
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text-secondary);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.gv-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all var(--transition);
    outline: none;
}

.gv-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    background: var(--bg-card);
}

.gv-input::placeholder { color: var(--text-muted); }

.gv-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394A3B8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* === PAYMENT METHOD CARDS === */
.payment-method-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.payment-method-card:hover,
.payment-method-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.payment-method-card input[type="radio"] { display: none; }

.payment-method-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

/* === STEPS === */
.step-badge {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 0 12px var(--accent-glow);
    flex-shrink: 0;
}

.step-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.25rem;
}

.step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 0;
}

/* === ORDER SUMMARY SIDEBAR === */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: sticky;
    top: 90px;
}

.order-summary-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
}

.summary-total {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

/* === INVOICE / STATUS BADGE === */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.04em;
}

.status-pending { background: rgba(245,158,11,0.15); color: #F59E0B; border: 1px solid rgba(245,158,11,0.3); }
.status-success { background: rgba(16,185,129,0.15); color: #10B981; border: 1px solid rgba(16,185,129,0.3); }
.status-failed { background: rgba(239,68,68,0.15); color: #EF4444; border: 1px solid rgba(239,68,68,0.3); }
.status-processing { background: rgba(59,130,246,0.15); color: var(--accent); border: 1px solid var(--border-accent); }

/* === RATING STARS === */
.stars { color: #F59E0B; letter-spacing: 2px; }

/* === FAQ ACCORDION === */
.gv-accordion .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    box-shadow: none;
    padding: 1.1rem 1.25rem;
}

.gv-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-card);
    color: var(--accent);
    box-shadow: none;
}

.gv-accordion .accordion-button::after {
    filter: none;
    color: var(--text-muted);
}

.gv-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.gv-accordion .accordion-body {
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
    padding: 0 1.25rem 1.1rem;
}

/* === ALERT / FLASH === */
.alert-floating {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 9999;
    padding: 0.9rem 1.25rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.875rem;
    font-weight: 500;
    max-width: 380px;
    box-shadow: var(--shadow);
    animation: slideInRight 0.4s ease;
}

.alert-floating-success {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.4);
    color: #10B981;
}

.alert-floating-error {
    background: rgba(239,68,68,0.12);
    border: 1px solid rgba(239,68,68,0.35);
    color: #EF4444;
}

.btn-close-float {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

@keyframes slideInRight {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}

/* === FOOTER === */
.gv-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.social-links { display: flex; gap: 0.6rem; }

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}

.payment-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.pay-badge {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.footer-divider {
    border-color: var(--border);
    opacity: 1;
}

/* === DROPDOWN === */
.gv-dropdown {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
}

.gv-dropdown .dropdown-item {
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.9rem;
}

.gv-dropdown .dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.gv-dropdown .dropdown-divider { border-color: var(--border); }

/* === TABLE === */
.gv-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.gv-table th {
    background: var(--bg-secondary);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-display);
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
}

.gv-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.gv-table tr:hover td { background: var(--bg-card-hover); }

/* === JOKI & ACCOUNT CARDS === */
.joki-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.joki-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
    transform: translateY(-4px);
}

.joki-game-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 2px solid var(--border);
}

/* === TOAST / LOADING === */
.gv-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    display: inline-block;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* === CONTACT SECTION === */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
}

.contact-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-accent);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 auto 1rem;
}

/* === PAGINATION === */
.gv-pagination .page-link {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    border-radius: var(--radius-sm) !important;
    margin: 0 2px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.gv-pagination .page-link:hover,
.gv-pagination .page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 0 12px var(--accent-glow);
}

/* === MISC UTILITIES === */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 4rem 0;
}

.glow-text {
    text-shadow: 0 0 30px var(--accent-glow);
}

.bg-card { background: var(--bg-card) !important; }
.bg-secondary-theme { background: var(--bg-secondary) !important; }
.border-theme { border-color: var(--border) !important; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-section { min-height: auto; padding: 4rem 0; }
    .hero-stats { gap: 1.5rem; }
    .gv-navbar { padding: 0.5rem 0; }
    .nominal-card { padding: 0.75rem; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* === SKELETON LOADING === */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

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