:root {
    --bg-color: #050505;
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --accent-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --hover-glow: 0 0 20px rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    background-image: url('foto/FOTO.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

header h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
    position: relative;
    color: var(--text-primary);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.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: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(38px, 9999px, 81px, 0);
    }

    20% {
        clip: rect(4px, 9999px, 98px, 0);
    }

    40% {
        clip: rect(66px, 9999px, 12px, 0);
    }

    60% {
        clip: rect(2px, 9999px, 4px, 0);
    }

    80% {
        clip: rect(98px, 9999px, 3px, 0);
    }

    100% {
        clip: rect(58px, 9999px, 86px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(11px, 9999px, 93px, 0);
    }

    20% {
        clip: rect(98px, 9999px, 2px, 0);
    }

    40% {
        clip: rect(31px, 9999px, 32px, 0);
    }

    60% {
        clip: rect(74px, 9999px, 55px, 0);
    }

    80% {
        clip: rect(25px, 9999px, 64px, 0);
    }

    100% {
        clip: rect(1px, 9999px, 96px, 0);
    }
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 800px;
}

.release-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-glow);
    border-color: rgba(255, 255, 255, 0.3);
}

.cover-art {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.release-card:hover .cover-art img {
    transform: scale(1.05);
}

.release-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.release-info h3 {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}



.release-details {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.release-details p {
    margin: 0;
}

.release-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

.presave-btn {
    display: inline-block;
    padding: 1rem 0;
    background: transparent;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 200px;
    /* Fixed width for consistency */
    text-align: center;
}

.presave-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

footer {
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    /* Larger for icons */
    position: relative;
    transition: color 0.3s, transform 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

@media (max-width: 600px) {
    header h1 {
        font-size: 3rem;
    }

    .container {
        padding: 1rem;
    }
}