:root {
    --bg-color: #0a0a0f;
    --text-color: #f8fafc;

    /* Neons */
    --primary-cyan: #00d9ff;
    --primary-cyan-dim: rgba(0, 217, 255, 0.1);
    --secondary-purple: #a855f7;
    --accent-gold: #ffd700;

    /* Glass & Cards */
    --glass-bg: rgba(26, 26, 36, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);

    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Updated Background Effects */
body::before {
    content: '';
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: var(--primary-cyan);
    filter: blur(120px);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    right: 20%;
    width: 600px;
    height: 600px;
    background: rgba(168, 85, 247, 0.1);
    /* Purple */
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
    border-radius: 50%;
}

/* Typography Updates */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-cyan {
    color: var(--primary-cyan);
}

.text-gold {
    color: var(--accent-gold);
}

.text-purple {
    color: var(--secondary-purple);
}

.glow-text {
    text-shadow: 0 0 35px rgba(0, 217, 255, 0.35);
}

.gradient-text {
    background: linear-gradient(to right, var(--primary-cyan), var(--secondary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--primary-cyan);
    color: #0a0a0f;
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
    background: #00b8db;
    box-shadow: 0 0 32px rgba(0, 217, 255, 0.6);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    background: transparent;
}

.btn-outline:hover {
    color: var(--primary-cyan);
    background: rgba(0, 217, 255, 0.1);
    border-color: rgba(0, 217, 255, 0.3);
}

.card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.card:hover {
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Navbar */
.navbar {
    padding: 16px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 36, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: var(--primary-cyan);
    filter: blur(20px);
    opacity: 0.3;
    border-radius: 50%;
}

.logo {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: #f8fafc;
}

.nav-links {
    display: flex;
    gap: 8px;
    background: rgba(26, 26, 36, 0.8);
    padding: 4px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    font-size: 0.9rem;
    color: #94a3b8;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary-cyan);
    background: rgba(0, 217, 255, 0.1);
}

.nav-link.active {
    color: #0a0a0f;
    background: var(--primary-cyan);
    box-shadow: 0 0 24px rgba(0, 217, 255, 0.4);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-eye-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Simple CSS Eye Animation approximating the visual */
.eye-outer {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    position: absolute;
    animation: pulse-ring 3s infinite;
}

.eye-inner {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, #fff 0%, var(--primary-cyan) 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 40px var(--primary-cyan);
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 60px;
    max-width: 800px;
    width: 100%;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}

.link-card.gold-border {
    border-color: var(--accent-gold);
}

.link-card.gold-border:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.link-icon {
    font-size: 1.5rem;
}

/* Project Page Specifics */
.project-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding-top: 100px;
    padding-bottom: 60px;
}

.sidebar {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

.file-tree ul {
    list-style: none;
    padding-left: 20px;
}

.file-tree li {
    margin: 8px 0;
    position: relative;
}

.file-tree li::before {
    content: '├';
    position: absolute;
    left: -20px;
    color: var(--primary-cyan);
    opacity: 0.5;
}

.code-viewer {
    background: #0a0a0a;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--primary-cyan);
    color: var(--primary-cyan);
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    margin-top: 80px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .project-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}