:root {
    --obsidian-black: #0A0A0A;
    --shimmer-gold: #D4AF37;
    --soft-focus-pink: #F8BBD0;
    --spectral-purple: #6A1B9A;
    --text-light: #E0E0E0;
    --text-muted: #A0A0A0;
}

body {
    background-color: var(--obsidian-black);
    color: var(--text-light);
    font-family: 'Playfair Display', serif; /* Elegant serif for aesthetics */
    line-height: 1.6;
    overflow-x: hidden;
}

.tech-font {
    font-family: 'JetBrains Mono', monospace; /* Tech/Data font */
}

.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--shimmer-gold);
    backdrop-filter: blur(10px);
}

.navbar-brand, .nav-link {
    color: var(--shimmer-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--shimmer-gold), #fff, var(--shimmer-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--soft-focus-pink);
    letter-spacing: 5px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--shimmer-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.section-title {
    color: var(--shimmer-gold);
    border-left: 4px solid var(--shimmer-gold);
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: 4rem;
}

/* Animations */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.btn-gold {
    background-color: var(--shimmer-gold);
    color: var(--obsidian-black);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #fff;
    color: var(--obsidian-black);
}

/* Nano Capsule Animation Placeholder */
#nano-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.6;
}
