/* quen ten medo */
*,
::before,
::after {
    box-sizing: border-box;
}

:root {
    /* Theme Colors */
    --mystery-purple: #4a148c;
    --deep-night: #1a237e;
    --shadow-gray: #37474f;
    --fear-yellow: #ffd600;
    --ghost-white: #f5f5f5;
    --text-dark: #212121;
    --accent-orange: #ff6d00;

    --font-main: 'Montserrat', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: #0d1117;
    background-image: radial-gradient(circle at 50% 50%, #1a237e 0%, #0d1117 100%);
    color: var(--ghost-white);
    overflow-x: hidden;
}

/* fondo */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    /* Evitar bloquear clics en móviles */
}

.motivo {
    position: absolute;
    font-size: 6rem;
    color: rgba(255, 214, 0, 0.05);
    user-select: none;
}

.motivo-1 {
    top: 10%;
    left: 5%;
    --rotation: -15deg;
    transform: rotate(var(--rotation));
    animation: float 15s ease-in-out infinite;
}

.motivo-2 {
    bottom: 15%;
    right: 10%;
    font-size: 10rem;
    --rotation: 10deg;
    transform: rotate(var(--rotation));
    animation: float 18s ease-in-out infinite reverse;
}

.motivo-3 {
    top: 15%;
    right: 15%;
    font-size: 8rem;
    --rotation: 25deg;
    transform: rotate(var(--rotation));
    animation: float 20s ease-in-out infinite 1s;
}

.circle-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 20, 140, 0.1);
}

.circle-1 {
    top: 40%;
    left: 80%;
    width: 120px;
    height: 120px;
    animation: float 14s ease-in-out infinite;
}

.circle-2 {
    top: 70%;
    left: 15%;
    width: 180px;
    height: 180px;
    background: rgba(255, 109, 0, 0.05);
    animation: float 16s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(var(--rotation, 0deg));
    }

    25% {
        transform: translate(15px, -20px) rotate(calc(var(--rotation, 0deg) + 8deg));
    }

    50% {
        transform: translate(-10px, -35px) rotate(calc(var(--rotation, 0deg) - 5deg));
    }

    75% {
        transform: translate(-20px, -15px) rotate(calc(var(--rotation, 0deg) + 3deg));
    }
}

/* contido */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.poster-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out;
}

.poster-image {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    margin: 0 auto 30px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.names-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--fear-yellow);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-banner {
    background: var(--mystery-purple);
    padding: 15px 40px;
    display: inline-block;
    position: relative;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.main-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description-container {
    max-width: 750px;
    margin: 30px auto;
    text-align: left;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

@media (min-width: 700px) {
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.info-item:nth-child(1) {
    grid-column: 1 / -1;
}

@media (min-width: 700px) {
    .info-item:nth-child(1) {
        grid-column: span 1;
    }
    .info-item:nth-child(4) {
        grid-column: 1 / -1;
    }
}

.info-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--fear-yellow);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.btn-container {
    margin-top: 50px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--mystery-purple);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: #6a1b9a;
}

.btn-secondary {
    background: var(--shadow-gray);
}

.btn-secondary:hover {
    background: #455a64;
}

.btn-download {
    background: var(--accent-orange);
    color: white;
}

.btn-download:hover {
    background: #ff8f00;
}

.footer {
    padding: 60px 0 40px;
    background: #05070a;
    text-align: center;
    margin-top: 80px;
    position: relative;
    z-index: 10;
}

.copyright {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #9e9e9e;
}

.copyright a {
    color: var(--fear-yellow);
    font-weight: 700;
    text-decoration: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .names-container {
        flex-direction: column;
        gap: 10px;
    }

    .main-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .title-banner {
        padding: 10px 20px;
        max-width: 90vw;
    }

    /* Ocultar las alas del lazo en móvil para evitar scroll horizontal */
    .title-banner::before,
    .title-banner::after {
        display: none;
    }

    .btn-secondary {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

    .poster-card {
        padding: 20px;
    }
}