/* estramboticos */
*,
::before,
::after {
    box-sizing: border-box;
}

:root {
    --magic-purple: #7c5295;
    --playful-teal: #489fb5;
    --cheerful-yellow: #f8c146;
    --soft-pink: #f28482;
    --light-bg: #f9f6fc;
    --text-dark: #2d2036;
    --white: #ffffff;
    --card-shadow: rgba(124, 82, 149, 0.1);

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

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-playful);
    background: linear-gradient(135deg, #fdf0ff 0%, #f0fafc 40%, #fff8ec 70%, #fdf0ff 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* fondo */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Colorful Whimsical Shapes */
.shape {
    position: absolute;
    opacity: 0.08;
    pointer-events: none;
}

.shape-1 {
    top: 10%;
    left: 8%;
    width: 120px;
    height: 120px;
    background: var(--magic-purple);
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    --rotation: 20deg;
    transform: rotate(var(--rotation));
    animation: blob-float 16s ease-in-out infinite;
}

.shape-2 {
    bottom: 12%;
    right: 6%;
    width: 160px;
    height: 160px;
    background: var(--playful-teal);
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
    --rotation: -15deg;
    transform: rotate(var(--rotation));
    animation: blob-float 22s ease-in-out infinite reverse;
}

.shape-3 {
    top: 50%;
    left: 82%;
    width: 90px;
    height: 90px;
    background: var(--soft-pink);
    border-radius: 30% 70% 70% 30% / 50% 60% 40% 50%;
    --rotation: 45deg;
    transform: rotate(var(--rotation));
    animation: blob-float 18s ease-in-out infinite 2s;
}

/* Sparkles representing magic */
.sparkle {
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--cheerful-yellow);
    opacity: 0.12;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sparkle-1 {
    top: 25%;
    right: 15%;
    --rotation: 12deg;
    transform: scale(1) rotate(var(--rotation));
    animation: sparkle-glow 8s ease-in-out infinite;
}

.sparkle-2 {
    bottom: 30%;
    left: 12%;
    --rotation: -25deg;
    transform: scale(0.8) rotate(var(--rotation));
    animation: sparkle-glow 10s ease-in-out infinite 1s;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--rotation)) scale(1);
    }
    33% {
        transform: translate(15px, -25px) rotate(calc(var(--rotation) + 12deg)) scale(1.05);
    }
    66% {
        transform: translate(-10px, 15px) rotate(calc(var(--rotation) - 8deg)) scale(0.95);
    }
}

@keyframes sparkle-glow {
    0%, 100% {
        transform: scale(1) rotate(var(--rotation));
        opacity: 0.12;
    }
    50% {
        transform: scale(1.2) rotate(calc(var(--rotation) + 45deg));
        opacity: 0.25;
    }
}

/* Container & Layout */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.poster-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px var(--card-shadow);
    border: 4px solid transparent;
    background-clip: padding-box;
    outline: 4px solid var(--cheerful-yellow);
    outline-offset: -4px;
    margin-bottom: 45px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--magic-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.title-banner {
    background: var(--cheerful-yellow);
    padding: 15px 40px;
    display: inline-block;
    position: relative;
    margin: 20px 0 30px;
    box-shadow: 0 5px 20px rgba(248, 193, 70, 0.4);
    transform: rotate(-1deg);
}

.title-banner::before,
.title-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
}

.title-banner::before {
    left: -20px;
    border-width: 30px 20px 30px 0;
    border-color: transparent var(--cheerful-yellow) transparent transparent;
}

.title-banner::after {
    right: -20px;
    border-width: 30px 0 30px 20px;
    border-color: transparent transparent transparent var(--cheerful-yellow);
}

.main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
}

.poster-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 0 auto 35px;
    display: block;
    transition: transform 0.3s ease;
}

.poster-image:hover {
    transform: scale(1.02);
}

.description-container {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: left;
}

.description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4c3e56;
    margin-bottom: 20px;
}

.description:last-child {
    margin-bottom: 0;
}

/* Info Grid Details */
.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: var(--white);
    padding: 16px 14px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.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(--magic-purple);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Buttons and Navigation */
.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-download {
    background: var(--magic-purple);
    color: var(--white);
    border: none;
}

.btn-download:hover {
    background: #67427d;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 82, 149, 0.25);
}

.btn-secondary {
    background: rgba(124, 82, 149, 0.08);
    color: var(--magic-purple);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    background: rgba(124, 82, 149, 0.12);
    transform: translateY(-2px);
}

/* Footer Section */
.footer {
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid rgba(124, 82, 149, 0.08);
    text-align: center;
}

.copyright {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: rgba(45, 32, 54, 0.6);
    margin: 0;
}

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

.copyright a:hover {
    text-decoration: underline;
}

/* Animation utilities */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* mobil */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

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

    .main-title {
        font-size: 1.75rem;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}