html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "VT323", monospace;
    font-size: 18px;
    background-color: #0a0a0a;
    color: #e0e0e0;
    cursor: default;
    overflow-x: hidden;
}

:root {
    --primary-color: #ffffff;
    --primary-dark: #cccccc;
    --background-color: #0a0a0a;
    --window-bg: #151515;
    --border-color: #333333;
    --text-color: #e0e0e0;
    --shadow-color: rgba(255, 255, 255, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.2);
    --hover-glow: 0 0 25px rgba(255, 255, 255, 0.3);
}

::selection {
    background-color: var(--primary-color);
    color: #000;
}

.chakra-petch-regular {
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #121212;
    color: var(--text-color);
    text-align: center;
    min-height: 80px;
    height: auto;
    padding: 0;
    margin: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

header .logo {
    display: flex;
    top: 10px;
    left: 10px;
    margin-left: 20px;
    margin: 10px;
    width: 70px; 
    height: auto; 
}

footer {
    position: fixed;
    height: 60px;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #121212;
    color: var(--text-color);
    text-align: center;
    padding: 10px 0;
    border-top: 2px solid var(--border-color);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000; 
}

nav ul {
    background-color: transparent;
    position: fixed;
    padding: 5px;        
    margin: 10px;         
    margin-top: 5px;  
    width: calc(100% - 40px);       
    box-sizing: border-box;  
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-flex;
    z-index: 1000;
    margin-top: 5px;
}

nav ul .nav-links {
    display: flex;
    margin-right: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: wrap;
    justify-content: center;
}

nav ul .nav-links li {
    margin: 5px 10px;
}

nav ul li a:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 8px var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--hover-glow);
}

nav ul li a {
    color: var(--primary-color);
    background-color: #121212;
    text-decoration: none;
    margin: 0;
    z-index: 1000;
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-color);
    padding: 6px 12px;
    font-size: 24px;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.spotify {
    position: relative;
    width: 85%;
    max-width: 800px;
    text-align: center;  
    margin-top: 5px; 
    margin-bottom: 20px;
    background-color: var(--window-bg);
    border: 2px solid var(--border-color);
    padding: 25px 15px 0;
    box-shadow: var(--shadow-glow);
}

.bloodangel {
    margin-top: 15px;
    border: 2px solid var(--border-color);
    background-color: var(--window-bg);
    padding: 15px;
    box-shadow: var(--shadow-glow);
    position: relative;
    max-width: 90%;
    margin-bottom: 5px;
}

.bloodangel img {
    max-width: 100%;
    height: auto;
    display: block;
}

.logo {
    position: relative;
    font-size: 38px;
    display: inline-block;
    margin: -5px 20px 5px 0;
    padding: 0;
    color: var(--primary-color);
    font-weight: bold;
    text-shadow: 0 0 5px var(--shadow-color);
    transition: all 0.3s ease;
    vertical-align: middle;
    transform: translateY(-10px);
}

.logo:hover {
    text-shadow: 0 0 15px var(--primary-color);
    transform: scale(1.08);
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: cursor-blink 1s step-end infinite;
    color: var(--primary-color);
}

.cursor::after {
    content: '_';
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--background-color);
    padding: 20px;
    margin-top: 80px;
    margin-bottom: 80px;
}

.music, .serum, .sample {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px;  
    margin-top: 20px; 
    color: var(--text-color);
    background-color: var(--window-bg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-glow);
}

.serum {
    margin-top: 40px;
}

.sample {
    margin-top: 40px;
}

.download-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; 
}

.download-grid li {
    list-style: none; 
    margin: 0; 
}

.download-button {
    display: inline-block;
    padding: 12px 24px; 
    background-color: #121212;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    font-family: "VT323", monospace;
    font-size: 18px;
    position: relative;
}

.download-button:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--hover-glow);
    transform: translateY(-3px);
}

.download-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
    padding: 25px;  
    margin-top: 120px;
    margin-bottom: 80px;
    color: var(--text-color);
    background-color: var(--window-bg);
    border: 2px solid var(--border-color);
    box-shadow: 0 0 20px var(--shadow-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

a:hover {
    text-shadow: 0 0 5px var(--primary-color);
}

.social-media {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding: 10px 0;
}

.social-media a {
    margin: 0 15px;
    transition: all 0.3s ease;
}

.social-media a:hover {
    transform: translateY(-5px) scale(1.15);
}

.social-media img {
    width: 30px;
    height: auto;
    filter: drop-shadow(0 0 2px var(--shadow-color));
}

.social-media img:hover {
    filter: brightness(1.8) drop-shadow(0 0 8px var(--primary-color));
}

.spotify iframe {
    width: 100%;
    height: 352px;
    border: none;
    margin-bottom: -5px;
}

/* Window decoration styles */
.window {
    position: relative;
    background-color: var(--window-bg);
    border: 2px solid var(--border-color);
    padding: 30px 15px 15px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-glow);
}

.window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background-color: #1c1c1c;
    border-bottom: 2px solid var(--border-color);
}

.window::after {
    content: "•••";
    position: absolute;
    top: 2px;
    left: 10px;
    color: var(--primary-color);
    font-size: 12px;
    letter-spacing: 3px;
}

@media screen and (max-width: 1024px) {
    nav ul .nav-links {
        width: 80%;
    }
    
    nav ul li a {
        font-size: 22px;
        padding: 5px 10px;
    }
}

@media screen and (max-width: 768px) {
    nav ul {
        justify-content: space-between;
        padding-right: 20px;
        width: calc(100% - 20px);
    }
    
    nav ul .nav-links {
        display: none;
        position: static;
        transform: none;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1001;
        margin-left: 0;
    }
    
    .logo {
        margin-left: 0;
    }

    .hamburger div {
        width: 30px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .hamburger:hover div {
        box-shadow: 0 0 5px var(--primary-color);
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #121212;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border: 2px solid var(--border-color);
        z-index: 1000;
        margin-top: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .nav-menu a {
        margin: 8px;
        text-align: center;
        width: 100%;
        color: var(--primary-color);
        text-decoration: none;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a:hover {
        background-color: rgba(255, 255, 255, 0.05);
        transition: 0.3s;
    }
    
    .container {
        margin-top: 100px;
    }
    
    .bloodangel {
        margin-top: 20px;
    }
}

@media screen and (min-width: 769px) {
    .hamburger {
        display: none;
    }

    .nav-menu {
        display: none;
    }
}

/* CRT effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(10, 10, 10, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(255, 255, 255, 0.02), rgba(0, 0, 255, 0.03));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Text cursor animation */
@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

h1, h2, h3 {
    color: var(--primary-color);
    position: relative;
}

h1::after, h2::after {
    content: '_';
    display: inline-block;
    margin-left: 2px;
    animation: cursor-blink 1s step-end infinite;
    color: var(--primary-color);
}

/* Glow Effect */
.window:hover {
    box-shadow: var(--hover-glow);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Button Styling */
.download-button::before {
    content: '>';
    margin-right: 8px;
    display: inline-block;
    color: var(--primary-color);
}




