@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
    
body {
    margin: 0;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    background: #08081A; /* Very Dark Indigo (Starry Background) */
}

#ui-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* Top Navigation */
.top-nav {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    pointer-events: all;
}

.nav-item {
    color: #DDDDDD; /* Light Silver/Grey (Replaces previous inactive/light grey) */
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 20px;
    border-bottom: 3px solid transparent;
}

.nav-item:hover {
    color: #FFC700; /* Vibrant Gold (Replaces #fff) */
    text-shadow: 0 0 10px rgba(255, 199, 0, 0.5); /* Updated to Gold RGB */
}

.nav-item.active {
    color: #FFC700; /* Vibrant Gold (Replaces previous active color) */
    border-bottom: 3px solid #FFC700;
    text-shadow: 0 0 20px rgba(255, 199, 0, 0.8); /* Updated to Gold RGB */
}

/* Side Menu */
.side-menu {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: all;
    opacity: 0;
    transition: opacity 0.5s;
}

.side-menu.active {
    opacity: 1;
}

.menu-title {
    color: #FFC700; /* Vibrant Gold (Replaces previous active color) */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.menu-option {
    color: #DDDDDD; /* Light Silver/Grey (Replaces previous inactive/light grey) */
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px 20px;
    border-left: 3px solid transparent;
}

.menu-option:hover {
    color: #FFC700; /* Vibrant Gold (Replaces #fff) */
    border-left: 3px solid #FFC700; /* Vibrant Gold (Replaces previous active color) */
    padding-left: 30px;
    text-shadow: 0 0 10px rgba(255, 199, 0, 0.3); /* Updated to Gold RGB */
}

/* Bottom Info */
.bottom-info {
    position: absolute;
    bottom: 30px;
    left: 50px;
    right: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: all;
}

.controls-hint {
    color: #DDDDDD; /* Light Silver/Grey (Replaces previous inactive/light grey) */
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #DDDDDD; /* Light Silver/Grey (Replaces previous inactive/light grey) */
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #333; /* Kept dark border */
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link:hover {
    color: #7D0000; /* Deep Bloody Red (Replaces previous active color) */
    border-color: #7D0000;
    box-shadow: 0 0 20px rgba(125, 0, 0, 0.5); /* Updated to Deep Red RGB */
}

/* Logo */
.logo {
    position: absolute;
    top: 30px;
    left: 50px;
    color: #FFC700; /* Vibrant Gold (Replaces previous active color) */
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 199, 0, 0.8); /* Updated to Gold RGB */
    pointer-events: none;
}

/* Profile Name */
.profile-name {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #DDDDDD; /* Light Silver/Grey (Replaces #fff) */
    font-size: 20px;
    font-weight: 600;
    pointer-events: none;
}

/* Loading Screen */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #08081A; /* Very Dark Indigo (Starry Background) */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s;
}

#loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-text {
    color: #7D0000; /* Deep Bloody Red (Replaces previous active color) */
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 4px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Content Panels */
.content-panel {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    color: #DDDDDD; /* Light Silver/Grey (Replaces #fff) */
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: all;
    background: rgba(8, 8, 26, 0.7); /* Translucent Very Dark Indigo background */
    padding: 30px;
    border: 2px solid #333;
    border-left: 4px solid #FFC700; /* Vibrant Gold (Replaces previous active color) */
}

.content-panel.active {
    opacity: 1;
}

.content-panel h2 {
    color: #FFC700; /* Vibrant Gold (Replaces previous active color) */
    margin-top: 0;
    font-size: 28px;
    letter-spacing: 2px;
}

.content-panel p {
    color: #DDDDDD; /* Light Silver/Grey (Replaces #ccc) */
    line-height: 1.8;
    font-size: 16px;
}

.content-panel ul {
    color: #DDDDDD; /* Light Silver/Grey (Replaces #ccc) */
    line-height: 2;
}

.skill-tag {
    display: inline-block;
    padding: 5px 15px;
    margin: 5px;
    background: rgba(255, 199, 0, 0.2); /* Vibrant Gold transparent fill */
    border: 1px solid #FFC700; /* Vibrant Gold (Replaces previous active color) */
    color: #FFC700; /* Vibrant Gold (Replaces previous active color) */
    font-size: 14px;
    font-weight: 600;
}