/* ============================================
   WinTheCode.com — Main Stylesheet
   Gaming / Free Fire Theme — Mobile First
   ============================================ */

/* === CSS Variables === */
:root {
    --bg-dark: #0D0D1A;
    --bg-card: #1A1A2E;
    --bg-surface: #16213E;
    --bg-input: #0D0D1A;
    --fire-orange: #FF6B00;
    --fire-red: #FF2D2D;
    --gold: #FFD700;
    --diamond-blue: #00D4FF;
    --green: #00FF88;
    --purple: #8B5CF6;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: #2a2a4a;
    --gradient-fire: linear-gradient(135deg, #FF6B00, #FF2D2D);
    --gradient-diamond: linear-gradient(135deg, #00D4FF, #8B5CF6);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FF6B00);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.2);
    --radius: 12px;
    --radius-lg: 16px;
    --max-width: 480px;
    --nav-height: 64px;
    --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === Reset === */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg-dark);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: calc(var(--nav-height) + 20px);
}

a { color: var(--diamond-blue); text-decoration: none; }
a:hover { color: var(--fire-orange); }

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

/* === Container === */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* === Top Header === */
.top-header {
    background: var(--bg-card);
    padding: 14px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.top-header .logo-text {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.top-header .logo-icon {
    font-size: 20px;
    margin-right: 6px;
}

/* === Bottom Navigation === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
    backdrop-filter: blur(10px);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.2s;
    text-decoration: none;
}

.bottom-nav a .nav-icon {
    font-size: 22px;
    transition: transform 0.2s;
}

.bottom-nav a:hover {
    color: var(--fire-orange);
}

.bottom-nav a:hover .nav-icon {
    transform: scale(1.15);
}

.bottom-nav a.active {
    color: var(--fire-orange);
}

.bottom-nav a.active .nav-icon {
    transform: scale(1.15);
}

/* === Hero Section === */
.hero {
    text-align: center;
    padding: 32px 16px 24px;
    background: linear-gradient(180deg, rgba(255,107,0,0.12) 0%, transparent 100%);
}

.hero h1 {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
}

.hero h1 .trophy { font-size: 30px; }

.hero h1 .diamonds {
    background: var(--gradient-diamond);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: #fff;
    font-family: var(--font);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn:active {
    transform: translateY(0);
}

.btn-fire {
    background: var(--gradient-fire);
    width: 100%;
    padding: 16px;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.btn-fire:hover {
    box-shadow: 0 6px 30px rgba(255, 107, 0, 0.5);
}

.btn-diamond {
    background: var(--gradient-diamond);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--fire-orange);
    color: var(--fire-orange);
    padding: 12px 24px;
}

.btn-outline:hover {
    background: var(--fire-orange);
    color: #fff;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
}

.btn-green {
    background: var(--green);
    color: #0D0D1A;
}

.btn-red {
    background: var(--fire-red);
}

.btn-gold {
    background: var(--gradient-gold);
    color: #0D0D1A;
}

/* === Cards === */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
}

.card-icon {
    font-size: 24px;
}

/* === How It Works Steps === */
.steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-card);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.step-content {
    flex: 1;
}

.step-content .step-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content .step-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* === Mini Leaderboard === */
.mini-lb {
    list-style: none;
}

.mini-lb li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.mini-lb li:last-child {
    border-bottom: none;
}

.mini-lb .lb-rank {
    font-size: 18px;
    font-weight: 800;
    width: 32px;
    text-align: center;
}

.mini-lb .lb-rank.gold { color: var(--gold); }
.mini-lb .lb-rank.silver { color: #C0C0C0; }
.mini-lb .lb-rank.bronze { color: #CD7F32; }

.mini-lb .lb-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.mini-lb .lb-info {
    flex: 1;
}

.mini-lb .lb-name {
    font-size: 14px;
    font-weight: 600;
}

.mini-lb .lb-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.mini-lb .lb-time-value {
    font-weight: 700;
    color: var(--fire-orange);
}

/* === Leaderboard Page === */
.page-title {
    font-size: 24px;
    font-weight: 800;
    padding: 20px 16px 16px;
    text-align: center;
}

.tabs {
    display: flex;
    background: var(--bg-card);
    border-radius: var(--radius);
    margin: 0 16px 16px;
    padding: 4px;
    border: 1px solid var(--border);
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
    border: none;
    background: transparent;
    font-family: var(--font);
}

.tab.active {
    background: var(--gradient-fire);
    color: #fff;
}

.tab:hover:not(.active) {
    color: var(--text-primary);
}

/* === Rank Badges === */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
}

.rank-badge.gold { background: linear-gradient(135deg, #FFD700, #FF6B00); color: #0D0D1A; }
.rank-badge.silver { background: linear-gradient(135deg, #C0C0C0, #94A3B8); color: #0D0D1A; }
.rank-badge.bronze { background: linear-gradient(135deg, #CD7F32, #8B5CF6); color: #fff; }

/* === Status Badges === */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.approved { background: rgba(0,255,136,0.15); color: var(--green); }
.status-badge.rejected { background: rgba(255,45,45,0.15); color: var(--fire-red); }
.status-badge.pending { background: rgba(255,214,0,0.15); color: var(--gold); }

/* === Forms === */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    background: var(--bg-input);
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--fire-orange);
}

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

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* === File Upload === */
.upload-area {
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
    margin-bottom: 16px;
    position: relative;
}

.upload-area:hover,
.upload-area.dragover {
    border-color: var(--fire-orange);
    background: rgba(255, 107, 0, 0.05);
}

.upload-area input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-area .upload-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.upload-area .upload-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.upload-area .upload-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.upload-preview {
    max-width: 200px;
    max-height: 300px;
    border-radius: var(--radius);
    margin: 8px auto;
    display: none;
    border: 2px solid var(--green);
}

.upload-preview.show {
    display: block;
}

/* === Submission Steps === */
.submit-steps {
    counter-reset: step-counter;
}

.submit-step {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.submit-step:last-child {
    border-bottom: none;
}

.submit-step-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.submit-step-label .step-num {
    background: var(--gradient-fire);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.submit-step-label .step-text {
    font-size: 15px;
    font-weight: 700;
}

.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(0,255,136,0.15);
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
}

/* === Checkbox === */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: var(--fire-orange);
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
    cursor: pointer;
}

/* === Messages === */
.msg {
    padding: 14px 16px;
    border-radius: var(--radius);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 500;
}

.msg-success {
    background: rgba(0,255,136,0.1);
    color: var(--green);
    border: 1px solid rgba(0,255,136,0.2);
}

.msg-error {
    background: rgba(255,45,45,0.1);
    color: var(--fire-red);
    border: 1px solid rgba(255,45,45,0.2);
}

.msg-info {
    background: rgba(0,212,255,0.1);
    color: var(--diamond-blue);
    border: 1px solid rgba(0,212,255,0.2);
}

.msg-warning {
    background: rgba(255,214,0,0.1);
    color: var(--gold);
    border: 1px solid rgba(255,214,0,0.2);
}

/* === Auth Pages === */
.auth-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - var(--nav-height));
    padding: 20px;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-glow);
}

.auth-box h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-box .auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.auth-box .auth-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* === Profile Page === */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    border: 1px solid var(--border);
}

.stat-card .stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--fire-orange);
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* === Winners Page === */
.winner-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 12px;
}

.winner-card:first-child {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255,215,0,0.15);
}

.winner-rank {
    font-size: 28px;
    font-weight: 900;
    width: 40px;
    text-align: center;
}

.winner-info {
    flex: 1;
}

.winner-name {
    font-size: 16px;
    font-weight: 700;
}

.winner-details {
    font-size: 13px;
    color: var(--text-secondary);
}

.winner-prize {
    text-align: right;
}

.winner-prize .prize-amount {
    font-size: 16px;
    font-weight: 800;
    color: var(--diamond-blue);
}

.winner-prize .prize-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* === Proof Gallery === */
.proof-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.proof-img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
}

.proof-img:hover {
    transform: scale(1.03);
}

.proof-img img {
    width: 100%;
    display: block;
}

/* === Prize Banner === */
.prize-banner {
    background: var(--gradient-diamond);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.prize-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

.prize-banner .prize-icon {
    font-size: 40px;
    margin-bottom: 8px;
    position: relative;
}

.prize-banner .prize-text {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    position: relative;
}

.prize-banner .prize-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
    position: relative;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-30%) rotate(0deg); }
    50% { transform: translateX(30%) rotate(5deg); }
}

/* === Announcement Banner === */
.announcement-banner {
    background: var(--bg-card);
    border: 1px solid var(--fire-orange);
    border-left: 4px solid var(--fire-orange);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
}

.announcement-banner .ann-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fire-orange);
    margin-bottom: 4px;
}

.announcement-banner .ann-text {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* === Rules / FAQ === */
.rule-section {
    margin-bottom: 24px;
}

.rule-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--fire-orange);
}

.rule-list {
    list-style: none;
}

.rule-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.rule-list li:last-child {
    border-bottom: none;
}

.rule-list .rule-icon {
    flex-shrink: 0;
    font-size: 18px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    font-family: var(--font);
}

.faq-question .faq-arrow {
    transition: transform 0.3s;
    color: var(--fire-orange);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 16px 16px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === Section Headers === */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 16px 12px;
}

.section-title {
    font-size: 18px;
    font-weight: 800;
}

.section-link {
    font-size: 13px;
    color: var(--fire-orange);
    font-weight: 600;
}

/* === Empty State === */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.empty-state .empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.empty-state .empty-text {
    font-size: 15px;
    font-weight: 600;
}

.empty-state .empty-hint {
    font-size: 13px;
    margin-top: 6px;
}

/* === Image Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox .lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === Submission History === */
.history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    padding: 14px;
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid var(--border);
}

.history-date {
    font-size: 12px;
    color: var(--text-muted);
}

.history-time {
    font-size: 16px;
    font-weight: 800;
    color: var(--fire-orange);
    flex: 1;
    text-align: center;
}

/* === Pending Counter === */
.pending-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255,214,0,0.15);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    margin: 0 16px 16px;
}

/* === Utilities === */
.text-center { text-align: center; }
.text-fire { color: var(--fire-orange); }
.text-diamond { color: var(--diamond-blue); }
.text-green { color: var(--green); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.gap-8 { gap: 8px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }

/* === Loading Spinner === */
.spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--fire-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,107,0,0.3); }
    50% { box-shadow: 0 0 40px rgba(255,107,0,0.6); }
}

.animate-in {
    animation: fadeInUp 0.4s ease;
}

.pulse {
    animation: pulse 2s infinite;
}

.glow {
    animation: glow 2s infinite;
}

/* === Responsive === */
@media (min-width: 481px) {
    .container { padding: 0 24px; }
    .hero h1 { font-size: 30px; }
}

@media (min-width: 768px) {
    :root { --max-width: 520px; }
    body { display: flex; justify-content: center; background: #080812; }
    .bottom-nav {
        max-width: 520px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
}

/* === Scrollbar === */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--fire-orange); }
