:root {
    --bg-main: #ffffff;
    --bg-surface: #f8fafc;
    --bg-surface-subtle: #f1f5f9;
    --bg-card: #ffffff;
    --bg-card-hover: #f8fafc;
    --border-subtle: #e2e8f0;
    --border-card: #cbd5e1;
    --border-lime: rgba(132, 204, 22, 0.45);
    
    --accent-lime: #84cc16;
    --accent-lime-bright: #a3e635;
    --accent-lime-codezzi: #b8ff45;
    --accent-lime-dark: #4d7c0f;
    --accent-lime-glow: rgba(132, 204, 22, 0.25);
    --accent-lime-bg: rgba(132, 204, 22, 0.1);

    --text-heading: #0a0d14;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-card-hover: 0 20px 35px -10px rgba(0, 0, 0, 0.08), 0 0 25px -5px rgba(132, 204, 22, 0.25);
    --shadow-lime: 0 10px 25px -5px rgba(132, 204, 22, 0.4);
}

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

.bg-grid-light {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

.bg-dots-light {
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
}

.glass-header-light {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.glass-card-light {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    box-shadow: var(--shadow-card);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card-light:hover {
    transform: translateY(-4px);
    border-color: var(--border-lime);
    box-shadow: var(--shadow-card-hover);
}

.badge-status-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: #f7fee7;
    border: 1px solid #d9f99d;
    color: #3f6212;
}

.badge-status-dot-lime {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #84cc16;
    box-shadow: 0 0 10px #84cc16;
    animation: pulse-dot-lime 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-dot-lime {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.8); }
}

.btn-lime-roll {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #84cc16;
    color: #0a0d14 !important;
    font-weight: 700;
    border-radius: 0.625rem;
    padding: 0.75rem 1.75rem;
    box-shadow: var(--shadow-lime);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    text-decoration: none;
    border: 1px solid #a3e635;
}

.btn-lime-roll:hover {
    background: #a3e635;
    box-shadow: 0 12px 30px -5px rgba(132, 204, 22, 0.6);
    transform: translateY(-2px);
    color: #000000 !important;
}

.btn-secondary-light {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #0f172a !important;
    font-weight: 600;
    border-radius: 0.625rem;
    padding: 0.75rem 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-secondary-light:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-2px);
    color: #000000 !important;
}

.glow-orb-lime {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(163, 230, 53, 0.25) 0%, rgba(132, 204, 22, 0) 70%);
}

.glow-orb-slate {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, rgba(203, 213, 225, 0.5) 0%, rgba(241, 245, 249, 0) 70%);
}

@keyframes spin-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-orbit-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.animate-orbit {
    animation: spin-orbit 55s linear infinite;
}

.animate-orbit-reverse {
    animation: spin-orbit-reverse 42s linear infinite;
}

.animate-float-node {
    animation: float-gentle 4s ease-in-out infinite;
}

.terminal-light {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    color: #e2e8f0;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-light-header {
    background: #1e293b;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #334155;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-light {
    padding: 0.5rem 0.9rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    color: #475569;
    transition: all 0.2s ease;
}

.nav-link-light:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.nav-link-light.active {
    background: #ecfccb;
    color: #3f6212;
    border: 1px solid #d9f99d;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
