/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#shader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: normal;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000;
}

/* Latest Release Section */
#latest-release {
    position: relative;
    padding: 6rem 2rem;
    background-color: #111;
    z-index: 2;
    transform: translateZ(0);
}

/* Social Media Section */
#social {
    position: relative;
    padding: 4rem 2rem;
    background-color: #000;
    z-index: 2;
    transform: translateZ(0);
}

/* Asegurarse de que dat.GUI esté por encima del canvas */
/* .dg.ac {
    display: none !important;
} */

/* --- HERO CONTENT BLOQUES --- */
.hero-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    letter-spacing: 0.1em;
}

.release-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.album-art {
    flex: 1;
}

.album-art img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.release-info {
    flex: 1;
}

.release-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.release-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.listen-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.listen-button:hover {
    background-color: #333;
    color: #fff;
    transform: translateY(-2px);
}

.social-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #888;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .release-container {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-content p {
        font-size: 1.2rem;
    }
}

.hero.hide-background::before {
    display: none;
}

/* Social links arriba a la derecha */
.social-links {
    align-self: flex-end;
    margin-top: 2%;
    margin-right: 2%;
    z-index: 10;
    width: fit-content;
    display: inline-block;
}
.social-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
    background: #111;
    padding: 3px 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
}
.social-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Banner de lanzamiento abajo a la izquierda */
.release-info-block {
    align-self: flex-start;
    margin-left: 2%;
    margin-bottom: 2%;
    z-index: 10;
    width: fit-content;
    display: inline-block;
}
.release-header-bg {
    background: #111;
    padding: 8px 18px 0px 12px;
    width: fit-content;
    border-radius: 0 0 0 0;
    margin-bottom: -5px;
}
.release-main-bg {
    background: #111;
    padding: 0px 24px 10px 12px;
    width: fit-content;
    border-radius: 0 6px 0 0;
    display: inline-block;
}
.release-info-block .new-release {
    font-size: 20px;
    letter-spacing: 1px;
    font-family: 'Xanh Mono', monospace;
    font-style: normal;
    font-weight: 400;
    opacity: 0.85;
}
.release-info-block .new-release .new-word {
    font-style: italic;
}
.release-info-block .release-title {
    font-size: 40px;
    font-weight: 400;
    display: block;
    margin: 4px 0 0 0;
}
.release-info-block .release-year {
    font-size: 25px;
    font-weight: normal;
    opacity: 0.7;
    font-family: 'Xanh Mono', monospace;
    font-style: normal;
}
.release-info-block .find-it {
    font-size: 40px;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    border-top: none;
    border-bottom: 3px solid #fff;
    padding-top: 0;
    padding-bottom: 6px;
}

@media (max-width: 600px) {
    .release-info-block {
        font-size: 18px;
        padding: 10px 10px 6px 10px;
    }
    .release-info-block .release-title {
        font-size: 22px;
    }
    .release-info-block .find-it {
        font-size: 18px;
    }
    .social-links {
        font-size: 14px;
        padding: 8px 10px 4px 10px;
        margin-top: 4%;
        margin-right: 4%;
    }
    .social-links {
        top: 8px;
        right: 8px;
    }
    .release-info-block {
        left: 8px;
        bottom: 8px;
        margin-left: 4%;
        margin-bottom: 4%;
    }
}

.find-it-link {
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s;
}
.find-it-link .find-it {
    color: #fff;
    transition: color 0.3s;
}
.find-it-link:hover .find-it {
    color: #e74c3c;
} 

/* OCULTAR TEMPORALMENTE EL BLOQUE DE INFORMACIÓN DE LANZAMIENTO */
.release-info-block {
  display: none !important;
} 