/* ═══════════════════════════════════════
   VALCREST RP — Complete Redesign
   Clean Blue-White Modern Theme
   ═══════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    --blue: #2563eb;
    --blue-hover: #3b82f6;
    --blue-dim: rgba(37, 99, 235, 0.08);
    --blue-border: rgba(37, 99, 235, 0.18);
    --accent: #60a5fa;

    --bg: #0b0f1a;
    --card: #111827;
    --card-hover: #1a2236;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --text: #f1f5f9;
    --text-dim: #8896ab;
    --text-muted: #5b6b82;

    --font: 'Inter', sans-serif;
    --ease: 0.2s ease;
    --radius: 8px;
    --radius-lg: 14px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ─── Container ─── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Utility ─── */
.gradient-text {
    background: linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--blue-dim);
    color: var(--accent);
    border: 1px solid var(--blue-border);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 14px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: 10px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══ BUTTONS ═══ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 6px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    transition: var(--ease);
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-primary:hover {
    background: var(--blue-hover);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: #fff;
}

.btn-discord {
    background: #5865f2;
    color: #fff;
}

.btn-discord:hover {
    background: #4752c4;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 14px 34px;
    font-size: 0.95rem;
}

/* ═══ NAVBAR ═══ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(11, 15, 26, 0.95);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 800;
}

.nav-logo i {
    color: var(--blue);
    font-size: 1.3rem;
}

.nav-logo .accent {
    color: var(--blue);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: var(--ease);
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active {
    color: var(--accent);
}

.nav-link i {
    font-size: 0.8rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══ DROPDOWN ═══ */
.nav-dropdown {
    position: relative;
    padding: 8px 0;
}

.nav-dropdown .dropdown-arrow {
    font-size: 0.6rem;
    margin-left: 3px;
    transition: var(--ease);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: #151b2e;
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.15s ease;
    z-index: 100;
    margin-top: -8px;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: var(--ease);
}

.dropdown-menu li a:hover {
    color: #fff;
    background: rgba(37, 99, 235, 0.08);
}

.dropdown-menu li a i {
    font-size: 0.85rem;
    color: var(--accent);
    width: 18px;
    text-align: center;
}

/* Nav avatars */
.nav-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 4px;
}

.nav-avatar-placeholder {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 4px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
}

.nav-profile-link {
    display: flex;
    align-items: center;
}

/* ═══ HERO ═══ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 24px 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(170deg, #0b0f1a 0%, #111d36 50%, #162a52 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 500px 300px at 30% 40%, rgba(37, 99, 235, 0.1), transparent);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--bg));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--blue-dim);
    color: var(--accent);
    border: 1px solid var(--blue-border);
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease both;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero p {
    font-size: 1.05rem;
    color: var(--text-dim);
    margin: 20px auto 36px;
    max-width: 500px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 50px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ═══ FEATURE CARDS ═══ */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: var(--ease);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--blue-dim);
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══ INFO SECTION ═══ */
.info-section {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.info-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.info-content p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 24px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.92rem;
}

.info-list-item i {
    color: var(--accent);
    font-size: 0.9rem;
}

.info-image-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.info-image-card .big-icon {
    font-size: 3rem;
    color: var(--blue);
    margin-bottom: 16px;
}

.info-image-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.info-image-card p {
    color: var(--text-dim);
    font-size: 0.92rem;
}

/* ═══ CTA SECTION ═══ */
.cta-section {
    padding: 60px 0 80px;
}

.cta-card {
    background: var(--blue);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 300px 150px at 20% 30%, rgba(255, 255, 255, 0.05), transparent);
}

.cta-card * {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cta-card p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: var(--blue);
}

.cta-buttons .btn-primary:hover {
    background: #e2e8f0;
}

.cta-buttons .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ═══ PAGE HEADER ═══ */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, #0b0f1a, var(--bg));
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 400px 200px at 50% 40%, rgba(37, 99, 235, 0.06), transparent);
}

.page-header * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-header p {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto;
}

/* ═══ RULES ═══ */
.rules-section {
    padding: 60px 0 80px;
}

.rules-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rule-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: var(--ease);
}

.rule-item:hover {
    border-color: var(--border-hover);
}

.rule-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.rule-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.rule-content p {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══ STAFF CARDS ═══ */
.staff-section {
    padding: 60px 0 80px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 650px;
    margin: 0 auto;
}

.staff-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--ease);
}

.staff-card::before {
    display: none;
}

.staff-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
    transform: translateY(-2px);
}

.staff-card:hover::before {
    display: none;
}

.staff-avatar {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--blue);
    margin: 0 auto 16px;
    font-size: 1.5rem;
}

.staff-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.staff-role {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--blue-dim);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid var(--blue-border);
}

/* ═══ CONTACT ═══ */
.contact-section {
    padding: 60px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 850px;
    margin: 0 auto;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--ease);
}

.contact-info-card:hover {
    border-color: var(--border-hover);
}

.contact-info-card .icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-dim);
    border-radius: 6px;
    font-size: 1.1rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ═══ FORMS ═══ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dim);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 16px;
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-hint {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    margin-top: 4px !important;
    display: block;
}

/* ═══ FOOTER ═══ */
.footer {
    padding: 60px 0 0;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-logo i {
    color: var(--blue);
    font-size: 1.2rem;
}

.footer-logo .accent {
    color: var(--blue);
}

.footer-desc {
    color: var(--text-dim);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    color: var(--text-dim);
    transition: var(--ease);
}

.footer-socials a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.footer-links h4 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    font-size: 0.85rem;
    transition: var(--ease);
}

.footer-links li a:hover {
    color: var(--accent);
}

.footer-links li i {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom p+p {
    margin-top: 3px;
}

/* ═══ SCROLL TO TOP ═══ */
.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--ease);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--blue-hover);
}

/* ═══ PAGE CONTENT ═══ */
.page-content {
    padding: 60px 0 80px;
}

.page-content .content-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 750px;
    margin: 0 auto;
}

.page-content .content-card h2 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.page-content .content-card p {
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* ═══ ANIMATIONS ═══ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #0d1220;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 36px;
        gap: 4px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-actions {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .hero-stat .number {
        font-size: 1.3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .cta-card h2 {
        font-size: 1.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-content .content-card {
        padding: 24px 20px;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .nav-link {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        background: rgba(37, 99, 235, 0.04);
        border: none;
        border-left: 2px solid var(--blue);
        padding: 4px 8px;
        opacity: 1;
        visibility: visible;
        height: auto;
        transform: none;
        margin-top: 4px;
    }

    .dropdown-menu li a {
        padding: 8px 12px;
    }

    .whitelist-user-bar {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .whitelist-user-bar .user-info {
        flex-direction: column;
    }

    .whitelist-login-card {
        padding: 32px 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 14px;
    }
}

/* ═══ WHITELIST / APPLICATION PAGES ═══ */

/* Whitelist Login Card */
.whitelist-login-card {
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 32px;
}

.whitelist-login-card .login-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #5865f2;
    margin: 0 auto 20px;
    font-size: 1.7rem;
    color: #fff;
}

.whitelist-login-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.whitelist-login-card p {
    color: var(--text-dim);
    margin-bottom: 24px;
    font-size: 0.92rem;
}

/* Application Progress Bar */
.app-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 650px;
    margin: 0 auto 36px;
    position: relative;
    padding: 0 16px;
}

.app-progress::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 36px;
    right: 36px;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    width: 90px;
}

.progress-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--ease);
}

.progress-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-align: center;
}

.progress-step.completed .progress-icon {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #10b981;
}

.progress-step.completed .progress-label {
    color: #10b981;
}

.progress-step.active .progress-icon {
    background: var(--blue-dim);
    border-color: var(--blue);
    color: var(--blue);
}

.progress-step.active .progress-label {
    color: #fff;
}

@media (max-width: 600px) {
    .app-progress::before {
        left: 26px;
        right: 26px;
    }

    .progress-step {
        width: 64px;
    }

    .progress-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .progress-label {
        font-size: 0.7rem;
    }
}

/* Whitelist User Bar */
.whitelist-user-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 28px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.whitelist-user-bar .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.whitelist-user-bar .user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--blue);
}

.whitelist-user-bar .user-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.whitelist-user-bar .user-name {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
}

.whitelist-user-bar .user-tag {
    display: block;
    color: var(--text-dim);
    font-size: 0.78rem;
}

/* Whitelist Form */
.whitelist-form .form-group {
    background: rgba(17, 24, 39, 0.6);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 18px;
    transition: var(--ease);
}

.whitelist-form .form-group:hover,
.whitelist-form .form-group:focus-within {
    border-color: var(--border-hover);
}

.whitelist-form .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    text-shadow: none !important;
}

.whitelist-form .form-group label i {
    color: var(--accent);
    font-size: 1rem;
    background: var(--blue-dim);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-shadow: none !important;
}

.whitelist-form input,
.whitelist-form textarea,
.whitelist-form select {
    background: rgba(11, 15, 26, 0.5) !important;
    border-color: var(--border) !important;
}

.whitelist-form input:focus,
.whitelist-form textarea:focus,
.whitelist-form select:focus {
    background: rgba(11, 15, 26, 0.8) !important;
    border-color: var(--blue) !important;
}

/* Success / Error States */
.whitelist-success {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: 28px;
}

.whitelist-success i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 10px;
}

.whitelist-success h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.whitelist-success p {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.whitelist-error {
    max-width: 650px;
    margin: 0 auto 20px;
    text-align: center;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius);
    padding: 16px;
    color: #ef4444;
}

.whitelist-error i {
    font-size: 1.2rem;
    margin-right: 6px;
}

/* ═══ PROFILE PAGE ═══ */
.profile-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 32px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--blue);
}

.profile-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.profile-info {
    flex: 1;
}

.profile-info h2 {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.profile-tag {
    display: block;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.profile-id {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 3px;
}

.profile-section-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.profile-section-title h3 {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-section-title i {
    color: var(--accent);
}

.profile-empty {
    text-align: center;
    background: rgba(17, 24, 39, 0.3);
    border: 1px dashed var(--border-hover);
    border-radius: var(--radius);
    padding: 48px 20px;
}

.profile-empty i {
    font-size: 2.5rem;
    color: var(--text-muted);
    opacity: 0.3;
    margin-bottom: 12px;
}

.profile-empty p {
    color: var(--text-dim);
}

.profile-app-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.app-status-banner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 6px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.app-status-banner.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.app-status-banner.status-accepted {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.app-status-banner.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}

.app-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.app-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.detail-value {
    font-size: 1rem;
    font-weight: 500;
}

.app-expand {
    background: rgba(11, 15, 26, 0.4);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.app-expand summary {
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dim);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--ease);
}

.app-expand summary::-webkit-details-marker {
    display: none;
}

.app-expand summary:hover {
    color: var(--accent);
}

.app-expand[open] summary i {
    transform: rotate(180deg);
}

.app-expand-content {
    padding: 0 18px 18px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

.app-field-profile {
    margin-top: 16px;
}

.app-field-profile label {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 600;
}

.app-field-profile p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.9rem;
}

.app-reject-reason {
    margin-top: 20px;
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.app-reject-reason i {
    font-size: 1.5rem;
    color: #ef4444;
    margin-top: 2px;
}

.app-reject-reason strong {
    color: #ef4444;
    display: block;
    margin-bottom: 4px;
}

.app-reject-reason p {
    color: var(--text-dim);
    line-height: 1.5;
}

.app-accepted-info {
    margin-top: 20px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.app-accepted-info i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 2px;
}

.app-accepted-info strong {
    color: #10b981;
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.app-accepted-info p {
    color: var(--text-dim);
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .app-details-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ═══ APPLICATION HERO ═══ */
.app-hero {
    position: relative;
    padding: 90px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.95), var(--bg));
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.app-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 60%);
    pointer-events: none;
}

.app-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--blue-dim);
    border: 1px solid var(--blue-border);
    border-radius: 100px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
}

.app-hero .hero-badge i {
    font-size: 0.9rem;
}

.app-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: #fff;
}

.app-hero p {
    font-size: 1.05rem;
    color: var(--text-dim);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

.app-hero .hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.app-hero .hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 24px;
}

.app-hero .hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.app-hero .hero-stat .stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.app-hero .hero-stat .stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .app-hero {
        padding: 70px 0 36px;
    }

    .app-hero h1 {
        font-size: 1.9rem;
    }

    .app-hero p {
        font-size: 0.95rem;
    }

    .app-hero .hero-stats {
        gap: 20px;
    }

    .app-hero .hero-stat .stat-value {
        font-size: 1.2rem;
    }
}

/* ═══ SUBSCRIPTIONS ═══ */
.subscriptions-hero {
    position: relative;
    padding: 90px 0 50px;
    text-align: center;
    background: linear-gradient(180deg, rgba(11, 15, 26, 0.95), var(--bg));
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.subscriptions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.08), transparent 60%);
    pointer-events: none;
}

.subscriptions-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subscriptions-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.02em;
}

.subscriptions-hero p {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 768px) {
    .subscriptions-hero {
        padding: 70px 0 36px;
    }

    .subscriptions-hero h1 {
        font-size: 2rem;
    }

    .subscriptions-hero p {
        font-size: 0.95rem;
    }
}

/* ═══ VIP / PREMIUM ═══ */
.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(245, 158, 11, 0.08) !important;
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
}

.premium-badge i {
    color: #f59e0b;
}

.coming-soon-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.coming-soon-banner .banner-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    font-size: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.coming-soon-banner h3 {
    margin: 0 0 4px;
    font-size: 1.2rem;
    color: #10b981;
}

.coming-soon-banner p {
    margin: 0;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.vip-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-hover);
    transition: var(--ease);
}

.vip-card:hover {
    border-color: var(--border-hover);
    background: var(--card-hover);
    transform: translateY(-3px);
}

.vip-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: 50%;
    border: 2px solid;
}

.vip-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.vip-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.vip-price span {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-weight: 600;
    text-transform: uppercase;
}

.vip-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
}

.vip-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.4;
}

.vip-features li i {
    margin-top: 3px;
    font-size: 0.85rem;
    color: var(--accent);
}

.vip-popular {
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.03), var(--card));
    border-color: rgba(245, 158, 11, 0.2);
    transform: scale(1.02);
    z-index: 2;
}

.vip-popular::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.vip-popular:hover {
    transform: scale(1.04) translateY(-3px);
    border-color: rgba(245, 158, 11, 0.4);
}

.popular-tag {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    font-weight: 800;
    font-size: 0.72rem;
    padding: 4px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vip-popular .vip-features li i {
    color: #f59e0b;
}

.btn-vip {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-dim);
    border: 1px solid var(--border);
    cursor: not-allowed;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-vip.btn-silver {
    background: rgba(148, 163, 184, 0.04);
}

.btn-vip.btn-gold {
    background: rgba(245, 158, 11, 0.04);
    color: rgba(245, 158, 11, 0.5);
    border-color: rgba(245, 158, 11, 0.15);
}

.btn-vip.btn-diamond {
    background: rgba(56, 189, 248, 0.04);
}

@media (max-width: 992px) {
    .vip-popular {
        transform: none;
    }

    .vip-popular:hover {
        transform: translateY(-3px);
    }

    .coming-soon-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* ═══ STAFF HERO ═══ */
.staff-hero {
    position: relative;
    padding: 90px 0 60px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 30%, rgba(37, 99, 235, 0.05), transparent 50%);
}

.staff-hero-content {
    position: relative;
    z-index: 2;
}

.staff-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.staff-hero>p,
.staff-hero-content>p {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 460px;
    margin: 0 auto;
}

/* Staff Hero Particles */
.staff-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.staff-hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 30%;
    animation-delay: 1.5s;
    animation-duration: 9s;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.2);
}

.particle:nth-child(3) {
    left: 50%;
    top: 60%;
    animation-delay: 3s;
    animation-duration: 6s;
    width: 5px;
    height: 5px;
}

.particle:nth-child(4) {
    left: 25%;
    top: 70%;
    animation-delay: 2s;
    animation-duration: 8s;
    width: 3px;
    height: 3px;
    background: rgba(96, 165, 250, 0.15);
}

.particle:nth-child(5) {
    left: 70%;
    top: 50%;
    animation-delay: 4s;
    animation-duration: 7s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    25% {
        opacity: 1;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.7;
    }

    75% {
        opacity: 1;
    }
}

/* Staff Live/Offline indicators */
.staff-live-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 10px;
}

.staff-live-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    transition: var(--ease);
}

.staff-live-card:hover {
    border-color: var(--border-hover);
}

.staff-live-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.staff-live-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.staff-live-info {
    flex: 1;
}

.staff-live-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.staff-live-info .role-tag {
    font-size: 0.72rem;
    color: var(--text-dim);
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-indicator.online {
    background: #10b981;
    box-shadow: 0 0 6px rgba(16, 185, 129, 0.4);
}

.status-indicator.offline {
    background: var(--text-muted);
}

/* Staff Sections */
.staff-category {
    margin-bottom: 40px;
}

.staff-category-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.staff-category-title i {
    color: var(--accent);
}

/* ═══ ALERT BOXES ═══ */
.alert {
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.15);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.06);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.alert-success {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
}

/* Whitelist info box (legacy) */
.whitelist-info {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border-left: 3px solid var(--blue);
    max-width: 650px;
    margin: 0 auto 20px;
}

.whitelist-info .info-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.whitelist-info h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.whitelist-info p {
    color: var(--text-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ═══ STAFF PREMIUM CARDS ═══ */
.staff-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
}

.staff-card-premium {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: var(--ease);
}

.staff-card-premium:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.staff-card-glow {
    display: none;
}

.staff-card-inner {
    padding: 24px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.staff-avatar-wrap {
    margin-bottom: 14px;
}

.staff-avatar-ring {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--blue);
    padding: 2px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.staff-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.staff-tag {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.staff-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(37, 99, 235, 0.06);
    color: var(--pill-color, var(--accent));
    border: 1px solid rgba(37, 99, 235, 0.12);
}

.role-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.staff-meta {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 12px;
}

.staff-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.staff-meta-item i {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Staff Hero Stats */
.staff-hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.staff-hero-counter {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-ring {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--blue);
}

.counter-value {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
}

.staff-hero-stats-info {
    display: flex;
    flex-direction: column;
}

.stats-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.stats-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.staff-hero-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

.staff-hero-badge-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--blue-dim);
    color: var(--accent);
    border: 1px solid var(--blue-border);
}

.mini-badge.accent {
    background: rgba(96, 165, 250, 0.06);
}

@media (max-width: 768px) {
    .staff-grid-premium {
        grid-template-columns: 1fr;
    }

    .staff-hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .staff-hero-divider {
        width: 60px;
        height: 1px;
    }
}