:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #39ff14; /* Toxic Green */
    --accent-secondary: #ff3300; /* Warning Orange */
    --glass-bg: rgba(20, 20, 20, 0.7);
    --glass-border: rgba(57, 255, 20, 0.2);
    --font-main: 'Inter', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -20px;
    left: -20px;
    width: calc(100vw + 40px);
    height: calc(100vh + 40px);
    background-image: url('assets/bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(8px) brightness(0.6);
}

/* Static Noise Overlay */
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

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

a:hover {
    color: var(--accent-color);
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-family: var(--font-mono);
    font-size: 1rem;
    letter-spacing: 1px;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

.subtitle {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    letter-spacing: 5px;
    margin-bottom: 3rem;
    color: #888;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(79px, 9999px, 86px, 0); }
    20% { clip: rect(12px, 9999px, 34px, 0); }
    40% { clip: rect(56px, 9999px, 12px, 0); }
    60% { clip: rect(89px, 9999px, 54px, 0); }
    80% { clip: rect(23px, 9999px, 98px, 0); }
    100% { clip: rect(45px, 9999px, 21px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(21px, 9999px, 56px, 0); }
    20% { clip: rect(89px, 9999px, 12px, 0); }
    40% { clip: rect(34px, 9999px, 78px, 0); }
    60% { clip: rect(98px, 9999px, 23px, 0); }
    80% { clip: rect(12px, 9999px, 89px, 0); }
    100% { clip: rect(67px, 9999px, 45px, 0); }
}

/* Glass Panels (Main Sections) */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: var(--accent-color);
}

.right-align {
    text-align: right;
}

.center-align {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 1rem;
}

.primary-btn {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: inset 0 0 0 0 var(--accent-color);
}

.primary-btn:hover {
    box-shadow: inset 0 -50px 0 0 var(--accent-color);
    color: var(--bg-color);
}

.secondary-btn {
    background-color: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid #555;
}

.secondary-btn:hover {
    border-color: var(--text-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.buy-btn {
    background-color: var(--accent-secondary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
}

.buy-btn:hover {
    background-color: #cc2900;
}

/* Releases Section */
.release-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.release-card {
    display: flex;
    flex-direction: column;
    background: rgba(0,0,0,0.4);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    border-top: 1px solid var(--glass-border);
}

.cover-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
}

.cover-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 1px solid #333;
    filter: grayscale(80%) contrast(120%);
    transition: filter 0.3s ease;
    display: block;
}

.mask-watermark::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 65px;
    height: 25px;
    background-color: #050505;
    border-top-left-radius: 4px;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
}

.release-card:hover .cover-art {
    filter: grayscale(0%) contrast(100%);
}

.release-info h3 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}

.format {
    font-family: var(--font-mono);
    color: var(--accent-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.release-desc {
    margin-bottom: 2rem;
    color: #aaa;
}

.contributors {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border: 1px solid #222;
    margin-bottom: 1.5rem;
}

.contributors h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1rem;
}

.contributors ul {
    list-style: none;
}

.contributors li {
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

.role {
    color: #888;
    margin-right: 10px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin-left: auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #bbb;
}



/* Contact Section */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 600px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-color);
}

input, textarea {
    background: rgba(0,0,0,0.5);
    border: 1px solid #333;
    padding: 1rem;
    color: var(--text-color);
    font-family: var(--font-main);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem;
    font-family: var(--font-mono);
    color: #555;
    border-top: 1px solid #222;
    margin-top: 4rem;
    background: rgba(0,0,0,0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--text-color);
    font-family: var(--font-mono);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        padding: 2rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .release-card {
        flex-direction: column;
    }

    .cover-art {
        width: 100%;
        height: auto;
    }

    .hero-content h1 {
        font-size: 4rem;
    }
}
