/* ============================================
   Dov.re — Design System
   ============================================ */

:root {
    --bg-deep: #030014;
    --bg-surface: #0a0618;
    --bg-elevated: #110a24;
    --bg-glass: rgba(12, 8, 28, 0.65);
    --border: rgba(255, 255, 255, 0.07);
    --border-hover: rgba(255, 255, 255, 0.14);
    --text-primary: #fafafa;
    --text-secondary: #b4b4c0;
    --text-muted: #6b6b7b;
    --accent: #a78bfa;
    --accent-2: #22d3ee;
    --accent-glow: rgba(167, 139, 250, 0.4);
    --success: #34d399;
    --danger: #f87171;
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --shadow-card: 0 0 0 1px var(--border), 0 24px 80px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 80px var(--accent-glow);
    --font-display: 'Syne', system-ui, sans-serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Ambient background */
.ambient {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.ambient-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.ambient-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.container {
    width: min(1200px, 100% - 48px);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(1.2);
    background: rgba(6, 6, 10, 0.75);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.brand-center {
    justify-content: center;
    margin-bottom: 24px;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 1.05rem;
    font-weight: 600;
}

.brand-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    color: white;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.btn-danger {
    background: rgba(248, 113, 113, 0.15);
    color: var(--danger);
    border: 1px solid rgba(248, 113, 113, 0.3);
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero */
.main {
    padding: 48px 0 80px;
}

.hero {
    text-align: center;
    padding: 40px 0 56px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--success);
    margin-bottom: 28px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 40px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    min-width: 120px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
}

.stat-online {
    color: var(--success);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Toolbar */
.toolbar {
    margin-bottom: 40px;
}

.search-form {
    position: relative;
    max-width: 480px;
    margin: 0 auto 20px;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 14px 18px 14px 50px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.15);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.filter-chip:hover,
.filter-chip.active {
    background: rgba(129, 140, 248, 0.12);
    border-color: rgba(129, 140, 248, 0.35);
    color: var(--accent);
}

/* Site cards grid */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.site-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
    backdrop-filter: blur(16px);
    transition: var(--transition);
    overflow: hidden;
    animation: cardIn 0.5s ease backwards;
}

.site-card:nth-child(1) { animation-delay: 0.05s; }
.site-card:nth-child(2) { animation-delay: 0.1s; }
.site-card:nth-child(3) { animation-delay: 0.15s; }
.site-card:nth-child(4) { animation-delay: 0.2s; }

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), 0 0 40px color-mix(in srgb, var(--accent) 20%, transparent);
}

.site-card-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: var(--accent);
    opacity: 0.08;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    transition: var(--transition);
}

.site-card:hover .site-card-glow {
    opacity: 0.15;
}

.site-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.site-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
    border-radius: var(--radius-md);
    color: var(--accent);
}

.site-icon svg {
    width: 26px;
    height: 26px;
}

.site-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 999px;
}

.site-status-online {
    background: rgba(52, 211, 153, 0.12);
    color: var(--success);
}

.site-status-offline {
    background: rgba(248, 113, 113, 0.12);
    color: var(--danger);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.site-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 8px;
}

.site-name {
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.site-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.site-url {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.site-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.site-seen {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Empty state */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 24px;
    background: var(--bg-glass);
    border: 1px dashed var(--border);
    border-radius: var(--radius-xl);
}

.empty-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-state h3 {
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
}

.empty-state code {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    background: rgba(255,255,255,0.06);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 14px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    box-shadow: var(--shadow-card);
    animation: toastIn 0.3s ease;
}

.toast-success {
    border-color: rgba(52, 211, 153, 0.3);
    color: var(--success);
}

.toast-error {
    border-color: rgba(248, 113, 113, 0.3);
    color: var(--danger);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Admin */
.admin-body {
    min-height: 100vh;
}

.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: min(400px, 100%);
    padding: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.field span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.field input,
.field textarea,
.field select {
    padding: 10px 14px;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: rgba(129, 140, 248, 0.5);
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.back-link:hover {
    color: var(--text-secondary);
}

.admin-main {
    padding-top: 32px;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-panel {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.panel-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.admin-form textarea {
    resize: vertical;
    min-height: 60px;
}

.info-box {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.info-box p {
    margin-bottom: 12px;
}

.code-block {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    overflow-x: auto;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-box code,
.admin-table code {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 4px;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 500;
}

.admin-table td small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

.actions-cell {
    display: flex;
    gap: 8px;
    align-items: center;
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-size: 0.875rem;
}

.alert-success {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: var(--success);
}

.alert-error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.25);
    color: var(--danger);
}

.alert ul {
    margin-top: 8px;
    padding-left: 20px;
}

.log-list {
    list-style: none;
    max-height: 300px;
    overflow-y: auto;
}

.log-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.log-item time {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.log-error {
    color: var(--danger);
}

.admin-sync-panel {
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(3, 0, 20, 0.6));
    border-color: rgba(167, 139, 250, 0.25);
}

.sync-panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.sync-panel-content h2 {
    font-family: var(--font-display, inherit);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.sync-panel-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 560px;
    line-height: 1.6;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 1s linear infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: min(1200px, 100% - 32px);
    }

    .sites-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 24px 0 40px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   PREMIUM HOME PAGE
   ============================================ */

.page-home {
    background: var(--bg-deep);
}

.page-home #particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.gradient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.gradient-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, transparent 65%);
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbDrift 18s ease-in-out infinite;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 65%);
    bottom: 10%;
    right: -100px;
    animation: orbDrift 22s ease-in-out infinite reverse;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 65%);
    bottom: 30%;
    left: -80px;
    animation: orbDrift 26s ease-in-out infinite 2s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

.page-home .cursor-glow.active {
    opacity: 1;
}

/* Premium header */
.header-premium {
    background: transparent;
    border-bottom-color: transparent;
    transition: var(--transition);
}

.header-premium.scrolled {
    background: rgba(3, 0, 20, 0.82);
    border-bottom-color: var(--border);
    backdrop-filter: blur(24px) saturate(1.4);
}

.nav-premium {
    gap: 4px;
}

.nav-premium .nav-link {
    font-size: 0.9rem;
    padding: 10px 18px;
}

.btn-nav {
    margin-left: 8px;
    padding: 10px 22px !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.brand-mark svg {
    width: 22px;
    height: 22px;
    color: white;
}

.page-home .brand-mark {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 50%, #06b6d4 100%);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45);
}

.page-home .brand-text strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Hero premium */
.hero-premium {
    position: relative;
    padding: 140px 0 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

.hero-premium .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(52, 211, 153, 0.12);
    border-radius: 50%;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--success);
    animation: pulse 2s ease-in-out infinite;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 28px;
}

.hero-headline .line {
    display: block;
}

.hero-gradient {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 25%, #22d3ee 60%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 16px 28px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(167, 139, 250, 0.4);
    transform: translateY(-2px);
}

.page-home .btn-primary {
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.page-home .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.page-home .btn-primary:hover::before {
    transform: translateX(100%);
}

.page-home .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55);
}

/* Hero showcase */
.hero-showcase {
    position: relative;
    height: 420px;
    perspective: 1000px;
}

.showcase-card {
    position: absolute;
    width: 280px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    animation: floatCard 6s ease-in-out infinite;
}

.showcase-card-1 {
    top: 20px;
    left: 0;
    z-index: 2;
    transform: rotateY(-8deg) rotateX(4deg);
}

.showcase-card-2 {
    top: 80px;
    right: 0;
    z-index: 1;
    animation-delay: -3s;
    transform: rotateY(8deg) rotateX(-4deg);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(4deg); }
    50% { transform: translateY(-16px) rotateY(-8deg) rotateX(4deg); }
}

.showcase-card-2 {
    animation-name: floatCard2;
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotateY(8deg) rotateX(-4deg); }
    50% { transform: translateY(-12px) rotateY(8deg) rotateX(-4deg); }
}

.showcase-card-inner {
    overflow: hidden;
    border-radius: inherit;
}

.showcase-top {
    display: flex;
    gap: 6px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.showcase-dot:first-child { background: #ff5f57; }
.showcase-dot:nth-child(2) { background: #febc2e; }
.showcase-dot:nth-child(3) { background: #28c840; }

.showcase-body {
    padding: 28px 24px 32px;
    text-align: center;
}

.showcase-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
    border-radius: 16px;
    color: var(--accent);
}

.showcase-icon svg {
    width: 28px;
    height: 28px;
}

.showcase-body strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.showcase-body span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.showcase-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

.showcase-ring::before {
    content: '';
    position: absolute;
    inset: -40px;
    border: 1px solid rgba(34, 211, 238, 0.08);
    border-radius: 50%;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* Marquee */
.marquee-wrap {
    margin-top: auto;
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: -0.02em;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Stats premium */
.stats-premium {
    padding: 80px 0;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.stat-block {
    padding: 40px 32px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number.stat-green {
    background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-left: 2px;
}

.stat-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 12px;
}

.stat-desc {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Sections */
.section-services,
.section-experience {
    padding: 120px 0;
    position: relative;
    z-index: 3;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 6px 14px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 999px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.toolbar-premium {
    margin-bottom: 48px;
}

.search-premium {
    max-width: 560px;
}

.search-premium .search-input {
    padding: 18px 20px 18px 54px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-lg);
    font-size: 1rem;
}

.filters-premium {
    margin-top: 16px;
}

.filters-premium .filter-chip {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Bento grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.bento-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.bento-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.bento-card:hover {
    border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 60px color-mix(in srgb, var(--accent) 15%, transparent);
}

.bento-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.8s;
    pointer-events: none;
    z-index: 2;
}

.bento-card:hover .bento-shine {
    transform: translateX(100%);
}

.bento-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: var(--accent);
    opacity: 0.06;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.bento-preview {
    padding: 24px 24px 0;
}

.bento-featured .bento-preview {
    padding: 32px;
    display: flex;
    align-items: center;
}

.bento-browser {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.4);
}

.bento-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid var(--border);
}

.bento-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.bento-browser-bar span:nth-child(1) { background: #ff5f57; }
.bento-browser-bar span:nth-child(2) { background: #febc2e; }
.bento-browser-bar span:nth-child(3) { background: #28c840; }

.bento-browser-url {
    flex: 1;
    margin-left: 8px;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}

.bento-browser-screen {
    padding: 32px 24px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bento-featured .bento-browser-screen {
    min-height: 220px;
}

.bento-screen-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent) 20%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    border-radius: 18px;
    color: var(--accent);
}

.bento-screen-icon svg {
    width: 32px;
    height: 32px;
}

.bento-screen-lines {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.bento-screen-lines span {
    display: block;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.bento-content {
    padding: 28px 32px 32px;
}

.bento-featured .bento-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
}

.bento-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bento-category {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.bento-featured .bento-title {
    font-size: 2.2rem;
}

.bento-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 24px;
}

.bento-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.bento-updated {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.btn-accent {
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--accent);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-accent:hover {
    background: var(--accent);
    color: #030014;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent) 40%, transparent);
}

.empty-premium {
    grid-column: 1 / -1;
    padding: 100px 40px;
    text-align: center;
    background: var(--bg-glass);
    border: 1px dashed var(--border);
    border-radius: var(--radius-xl);
}

.empty-premium .empty-icon {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-premium h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.empty-premium p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    padding: 36px 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(167, 139, 250, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--accent);
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Showcase banner */
.showcase-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 56px 64px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(3, 0, 20, 0.8) 50%, rgba(34, 211, 238, 0.08) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.showcase-banner-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.showcase-banner-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.orbit {
    position: relative;
    width: 260px;
    height: 260px;
    margin: 0 auto;
}

.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    border-radius: 18px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.5);
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-elevated);
    border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border));
    border-radius: 14px;
    color: var(--accent);
    animation: orbitSpin 20s linear infinite;
    transform-origin: 0 0;
}

.orbit-item svg {
    width: 22px;
    height: 22px;
}

.orbit-item-1 { animation-delay: 0s; margin: -24px 0 0 80px; }
.orbit-item-2 { animation-delay: -10s; margin: -24px 0 0 80px; }

@keyframes orbitSpin {
    from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* CTA */
.section-cta {
    padding: 0 0 120px;
    position: relative;
    z-index: 3;
}

.cta-card {
    position: relative;
    text-align: center;
    padding: 80px 48px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    position: relative;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-actions {
    position: relative;
}

/* Footer premium */
.footer-premium {
    border-top: 1px solid var(--border);
    padding: 80px 0 32px;
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-admin {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.footer-admin:hover {
    opacity: 1;
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium responsive */
@media (max-width: 1024px) {
    .hero-premium .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-featured {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .showcase-banner {
        grid-template-columns: 1fr;
        padding: 40px 32px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-premium {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        padding: 16px 24px 24px;
        background: rgba(3, 0, 20, 0.95);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(20px);
    }

    .nav-premium.open {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-premium {
        padding-top: 100px;
        min-height: auto;
    }

    .hero-headline {
        font-size: 2.4rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-services,
    .section-experience {
        padding: 80px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cursor-glow {
        display: none;
    }
}

/* Service badges */
.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid transparent;
}

.badge-beta {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.35);
}

.badge-rp {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.35);
}

.badge-scp {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.35);
}

.badge-nations {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.35);
}

.badge-discord {
    background: rgba(88, 101, 242, 0.18);
    color: #818cf8;
    border-color: rgba(88, 101, 242, 0.4);
}

.badge-default {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border-color: var(--border);
}
