/* ================================================
   Vartacraft - Gold PVP Empire Theme
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Rubik:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
    --gold-primary:   #FFD700;
    --gold-secondary: #DAA520;
    --gold-dark:      #B8860B;
    --gold-dim:       #C8960C;
    --fire-orange:    #FF6B00;
    --fire-red:       #FF3300;

    --bg-void:        #060608;
    --bg-dark:        #0a0a0f;
    --bg-card:        rgba(255, 215, 0, 0.03);
    --bg-card-hover:  rgba(255, 215, 0, 0.06);
    --bg-input:       rgba(255, 255, 255, 0.05);

    --border-gold:    rgba(255, 215, 0, 0.25);
    --border-subtle:  rgba(255, 255, 255, 0.07);
    --border-input:   rgba(255, 215, 0, 0.3);

    --text-white:     #FFFFFF;
    --text-light:     rgba(255, 255, 255, 0.75);
    --text-muted:     rgba(255, 255, 255, 0.45);
    --text-gold:      #FFD700;

    --shadow-gold:    0 0 20px rgba(255, 215, 0, 0.2);
    --shadow-deep:    0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.4);

    --radius-card:    16px;
    --radius-btn:     10px;
    --radius-input:   10px;

    --transition:     0.2s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Rubik', sans-serif;
    background-color: var(--bg-dark);
    background-image: url('/assets/background.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-white);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(6, 6, 8, 0.92) 0%,
        rgba(10, 8, 2, 0.88) 50%,
        rgba(6, 6, 8, 0.95) 100%);
    z-index: 0;
    pointer-events: none;
}

body > * { position: relative; z-index: 1; }

a { color: var(--gold-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: #fff; }

h1, h2, h3 { font-family: 'Cinzel', serif; }

img { max-width: 100%; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ---- Navbar ---- */
.navbar-vc {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(6, 6, 8, 0.95);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gold);
    padding: 0;
}

.navbar-vc .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
}

.navbar-vc .nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-vc .nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.navbar-vc .nav-brand span {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--fire-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-vc .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-vc .nav-links a {
    color: var(--text-light);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.navbar-vc .nav-links a:hover,
.navbar-vc .nav-links a.active {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.08);
}

.navbar-vc .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-vc .nav-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 4px 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
}

.navbar-vc .nav-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.navbar-vc .nav-status .dot.online  { background: #4ade80; box-shadow: 0 0 6px #4ade80; }
.navbar-vc .nav-status .dot.offline { background: #f87171; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; color: var(--gold-primary); font-size: 1.5rem; cursor: pointer; }

.nav-mobile {
    display: none;
    background: rgba(6,6,8,0.98);
    border-top: 1px solid var(--border-gold);
    padding: 12px 24px 20px;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: color var(--transition);
}

.nav-mobile a:hover { color: var(--gold-primary); }
.nav-mobile.open { display: block; }

/* ---- Buttons ---- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-primary), var(--fire-orange));
    color: #000;
    font-weight: 700;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    padding: 11px 26px;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: filter var(--transition), transform 0.15s;
    letter-spacing: 0.5px;
}

.btn-gold:hover { filter: brightness(1.15); transform: translateY(-2px); color: #000; }
.btn-gold:active { transform: translateY(0); }

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 24px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-gold:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.btn-ghost {
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border: 1px solid var(--border-subtle);
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.2); }

.btn-danger-ghost {
    background: rgba(255,60,60,0.08);
    color: #ff6b6b;
    border: 1px solid rgba(255,60,60,0.25);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-danger-ghost:hover { background: rgba(255,60,60,0.15); color: #ff4444; }

.btn-sm { padding: 6px 14px; font-size: 0.82rem; }

/* ---- Cards ---- */
.card-vc {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card-vc:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.45);
    box-shadow: var(--shadow-gold);
}

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

.form-group label {
    display: block;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control-vc {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: var(--radius-input);
    color: #fff;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: 'Rubik', sans-serif;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control-vc:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.form-control-vc::placeholder { color: var(--text-muted); }
select.form-control-vc option { background: #111118; color: #fff; }

/* ---- Badges ---- */
.badge-admin     { background: rgba(255,60,60,0.15);   color: #ff6b6b;  border: 1px solid rgba(255,60,60,0.3);    border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }
.badge-modo      { background: rgba(90,120,255,0.15);  color: #7b8fff;  border: 1px solid rgba(90,120,255,0.3);   border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }
.badge-titan     { background: rgba(168,85,247,0.15);  color: #c084fc;  border: 1px solid rgba(168,85,247,0.35);  border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }
.badge-vartoxien { background: rgba(251,146,60,0.15);  color: #fb923c;  border: 1px solid rgba(251,146,60,0.35);  border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }
.badge-azurien   { background: rgba(56,189,248,0.15);  color: #38bdf8;  border: 1px solid rgba(56,189,248,0.35);  border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }
.badge-youtubeur { background: rgba(255,0,0,0.12);     color: #f87171;  border: 1px solid rgba(255,0,0,0.25);     border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }
.badge-membre    { background: rgba(255,215,0,0.1);    color: var(--gold-primary); border: 1px solid rgba(255,215,0,0.25); border-radius: 20px; padding: 2px 10px; font-size: 0.76rem; font-weight: 600; }

/* ---- Flash messages ---- */
.flash {
    border-radius: 10px;
    padding: 14px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
}

.flash-success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #4ade80; }
.flash-danger  { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #f87171; }
.flash-warning { background: rgba(251,191,36,0.1);  border: 1px solid rgba(251,191,36,0.3);  color: #fbbf24; }
.flash-info    { background: rgba(96,165,250,0.1);  border: 1px solid rgba(96,165,250,0.3);  color: #60a5fa; }

/* ---- Hero ---- */
.hero-section {
    text-align: center;
    padding: 100px 24px 80px;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 50%, var(--fire-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
    text-shadow: none;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* ---- Server status widget ---- */
.server-status {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    padding: 10px 24px;
    margin: 0 auto 36px;
    font-size: 0.9rem;
}

.server-status .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.server-status .dot.online  { background: #4ade80; box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite; }
.server-status .dot.offline { background: #f87171; }

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ---- Sections ---- */
.section { padding: 60px 0; }
.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 8px;
}
.section-subtitle { color: var(--text-muted); margin-bottom: 40px; }

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

/* ---- Grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 24px; }

/* ---- News cards ---- */
.news-card { overflow: hidden; }
.news-card-img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; margin-bottom: 16px; background: rgba(255,215,0,0.05); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 2rem; }
.news-card-img img { width: 100%; height: 180px; object-fit: cover; border-radius: 10px; }
.news-card-title { font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.news-card-excerpt { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--text-muted); }
.news-reactions { display: flex; gap: 12px; }
.news-reactions .react-btn { background: none; border: none; color: var(--text-muted); cursor: pointer; display: flex; align-items: center; gap: 4px; font-size: 0.85rem; transition: color var(--transition); padding: 0; }
.news-reactions .react-btn:hover.like { color: #4ade80; }
.news-reactions .react-btn:hover.dislike { color: #f87171; }
.news-reactions .react-btn.active-like { color: #4ade80; }
.news-reactions .react-btn.active-dislike { color: #f87171; }

/* ---- Wiki ---- */
.wiki-category { margin-bottom: 40px; }
.wiki-category-title { font-family: 'Cinzel', serif; font-size: 1.1rem; color: var(--gold-primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border-gold); display: flex; align-items: center; gap: 8px; }
.wiki-item { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 10px; color: var(--text-light); margin-bottom: 8px; transition: all var(--transition); }
.wiki-item:hover { border-color: var(--border-gold); color: var(--gold-primary); background: var(--bg-card-hover); }
.wiki-item i { font-size: 1.2rem; color: var(--gold-primary); }

/* ---- Shop ---- */
.shop-card { text-align: center; }
.shop-card-img { width: 80px; height: 80px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; background: rgba(255,215,0,0.08); border-radius: 50%; font-size: 2rem; border: 2px solid var(--border-gold); }
.shop-card-img img { width: 60px; height: 60px; object-fit: contain; border-radius: 8px; }
.shop-card-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 6px; }
.shop-card-desc { color: var(--text-muted); font-size: 0.83rem; line-height: 1.5; margin-bottom: 16px; min-height: 50px; }
.shop-card-price { font-size: 1.5rem; font-weight: 700; color: var(--gold-primary); margin-bottom: 16px; font-family: 'Cinzel', serif; }
.shop-card-price span { font-size: 0.9rem; color: var(--text-muted); font-family: 'Rubik', sans-serif; font-weight: 400; }
.featured-badge { position: absolute; top: -10px; right: 16px; background: linear-gradient(135deg, var(--gold-primary), var(--fire-orange)); color: #000; font-size: 0.72rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; font-family: 'Cinzel', serif; }

/* ---- Auth forms ---- */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 24px; }
.auth-box { width: 100%; max-width: 440px; }
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { width: 64px; height: 64px; border-radius: 14px; margin-bottom: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.auth-logo h1 { font-family: 'Cinzel', serif; font-size: 1.6rem; background: linear-gradient(135deg, var(--gold-primary), var(--fire-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.auth-logo p { color: var(--text-muted); font-size: 0.9rem; margin-top: 4px; }

/* ---- Profile ---- */
.profile-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-primary), var(--fire-orange)); display: flex; align-items: center; justify-content: center; font-size: 2rem; font-family: 'Cinzel', serif; font-weight: 700; color: #000; flex-shrink: 0; }
.profile-header { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.profile-name { font-family: 'Cinzel', serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.profile-joined { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* ---- Footer ---- */
.footer-vc {
    background: rgba(6, 6, 8, 0.9);
    border-top: 1px solid var(--border-gold);
    padding: 48px 0 24px;
    margin-top: 80px;
}

.footer-brand { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--gold-primary); margin-bottom: 8px; }
.footer-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; max-width: 280px; }

.footer-links-title { font-weight: 600; color: var(--text-light); margin-bottom: 12px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-primary); }

.footer-bottom { border-top: 1px solid var(--border-subtle); margin-top: 40px; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; margin: 0; }

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(88, 101, 242, 0.15);
    color: #7289da;
    border: 1px solid rgba(88, 101, 242, 0.3);
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
}
.discord-btn:hover { background: rgba(88, 101, 242, 0.25); color: #7289da; }

/* ---- Admin panel ---- */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: rgba(6,6,8,0.98); border-right: 1px solid var(--border-gold); padding: 24px 0; flex-shrink: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar-brand { padding: 0 20px 24px; border-bottom: 1px solid var(--border-gold); margin-bottom: 16px; }
.admin-sidebar-brand span { font-family: 'Cinzel', serif; color: var(--gold-primary); font-size: 1rem; }
.admin-nav a { display: flex; align-items: center; gap: 10px; color: var(--text-muted); padding: 10px 20px; font-size: 0.88rem; transition: all var(--transition); border-left: 3px solid transparent; }
.admin-nav a:hover, .admin-nav a.active { color: var(--gold-primary); background: rgba(255,215,0,0.06); border-left-color: var(--gold-primary); }
.admin-content { flex: 1; padding: 32px; overflow-x: hidden; }
.admin-title { font-family: 'Cinzel', serif; font-size: 1.6rem; color: var(--gold-primary); margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; padding: 10px 16px; border-bottom: 1px solid var(--border-subtle); text-align: left; }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-subtle); color: var(--text-light); font-size: 0.9rem; vertical-align: middle; }
.admin-table tr:hover td { background: rgba(255,215,0,0.02); }

/* ---- Comment section ---- */
.comment { display: flex; gap: 14px; margin-bottom: 20px; }
.comment-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-primary), var(--fire-orange)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 0.9rem; flex-shrink: 0; font-family: 'Cinzel', serif; }
.comment-body { flex: 1; }
.comment-author { font-weight: 600; color: var(--text-light); font-size: 0.88rem; }
.comment-date { color: var(--text-muted); font-size: 0.78rem; margin-left: 8px; }
.comment-text { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin-top: 4px; }

/* ---- Article/Wiki content ---- */
.article-content { color: var(--text-light); line-height: 1.8; font-size: 0.95rem; }
.article-content h1, .article-content h2, .article-content h3 { font-family: 'Cinzel', serif; color: var(--gold-primary); margin-top: 28px; margin-bottom: 12px; }
.article-content h2 { font-size: 1.3rem; }
.article-content h3 { font-size: 1.1rem; }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 20px; margin-bottom: 16px; }
.article-content li { margin-bottom: 6px; }
.article-content strong { color: #fff; }
.article-content blockquote { border-left: 3px solid var(--gold-primary); padding-left: 16px; color: var(--text-muted); margin: 20px 0; font-style: italic; }
.article-content code { background: rgba(0,0,0,0.4); border: 1px solid var(--border-subtle); border-radius: 6px; padding: 2px 6px; font-family: monospace; color: var(--gold-primary); font-size: 0.88em; }

/* ---- Dividers ---- */
.gold-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold-primary), var(--fire-orange)); border-radius: 2px; margin: 12px 0 28px; }

/* ---- Stat boxes ---- */
.stat-box { text-align: center; padding: 24px; }
.stat-box-value { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--gold-primary); }
.stat-box-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* ---- Tabs ---- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border-subtle); margin-bottom: 24px; }
.tab { background: none; border: none; color: var(--text-muted); padding: 10px 20px; font-size: 0.9rem; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--transition); font-family: 'Rubik', sans-serif; }
.tab:hover { color: var(--text-light); }
.tab.active { color: var(--gold-primary); border-bottom-color: var(--gold-primary); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .navbar-vc .nav-links, .navbar-vc .nav-status { display: none; }
    .nav-toggle { display: block; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: relative; }
    .hero-section { padding: 60px 24px 50px; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Utilities ---- */
.text-gold { color: var(--gold-primary) !important; }
.text-muted-vc { color: var(--text-muted) !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-4 { margin-bottom: 16px !important; }
.mb-6 { margin-bottom: 24px !important; }
.mb-8 { margin-bottom: 32px !important; }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.relative { position: relative; }
