/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    font-family: 'Arial', sans-serif;
    padding: 20px;
}


/* A */
a:visited {
  color:rgb(247, 151, 223);
}
a:link{
  color:rgb(247, 151, 223);
}
a:hover{
  color:rgb(180, 246, 255);
}
/* ===== ALBUM COVER CONTAINER ===== */
.album-cover {
    position: relative;
    width: 500px;
    height: 500px;
    background: url(http://i1.sndcdn.com/artworks-000101731642-iua2yk-t500x500.jpg);
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 100px rgba(0, 0, 0, 0.1);
    border: 3px solid #222;
}


/* ===== CHICAGO STARS ===== */
.stars-container {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 80px;
    z-index: 2;
    pointer-events: none;
}

.star {
    width: 60px;
    height: 60px;
    background: #000000;
    
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%
    );
}

/* ===== EDITABLE TEXT ELEMENTS ===== */
.editable-text {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.editable-text:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Top Banner */
.top-banner {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.top-banner .text-display {
    font-family: 'Bangers', cursive;
    font-size: 18px;
    letter-spacing: 8px;
    color: #eeeeee;
    text-shadow: 2px 2px 0 #ff0aff, -1px -1px 0 #bc59ff; 
}
.top-banner:hover::after {
    color: #22f7ff;
    text-shadow: 2px 2px 0 #22f7ff, -1px -1px 0 #22f7ff;
    filter: brightness(1.2);
}
/* Hosted By */
.hosted-by {
    top: 35px;
    left: 15px;
    white-space: nowrap;
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hosted-by .text-display {
    font-family: 'Permanent Marker', cursive;
    font-size: 22px;
    line-height: 1;
    color: #000;
    text-shadow: 
        2px 2px 0 #a42fdf,
        -1px -1px 0 #a42fdf;
}
.hosted-by:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
/* Main Title - Fiesta Boy */
.main-title {
    bottom: 80px;
    left: 20px;
    transform: rotate(-5deg);
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}
.main-title:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}
.main-title .text-display {
    font-family: 'Bangers', cursive;
    font-size: 72px;
    line-height: 0.8;
    color: #3bb5ff;
    text-shadow: 
        4px 4px 0 #22f7ff,
        8px 8px 0 #7f1ee9,
        2px 2px 8px rgba(0,0,0,0.8);
    letter-spacing: 2px;
    -webkit-text-stroke: 2px #000;
}

/* 2 Posh */
.instagram-text {
    top: 140px;
    right: 20px;
    transform: rotate(5deg);
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.instagram-text .text-display {
    font-family: 'Permanent Marker', cursive;
    font-size: 22px;
    color: #d521f3;
    line-height: 0.8;
    text-shadow: 
        1px 1px 0 #f18ecf,
        2px 2px 0 #000;
    text-align: center;
}
.instagram-text:hover {
    transform: rotate(5deg);
    transform: scale(1.05);
    filter: brightness(1.2);
}
.steam-text {
    top: 170px;
    right: 20px;
    transform: rotate(5deg);
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.steam-text .text-display {
    font-family: 'Permanent Marker', cursive;
    font-size: 22px;
    color: #d521f3;
    text-shadow: 
        1px 1px 0 #f18ecf,
        2px 2px 0 #000;
    text-align: center;
}
.steam-text:hover {
    transform: rotate(5deg);
    transform: scale(1.05);
    filter: brightness(1.2);
}
.lastfm-text {
    top: 200px;
    right: 20px;
    transform: rotate(5deg);
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.lastfm-text .text-display {
    font-family: 'Permanent Marker', cursive;
    font-size: 22px;
    color: #d521f3;
    text-shadow: 
        1px 1px 0 #f18ecf,
        2px 2px 0 #000;
    text-align: center;
}
.lastfm-text:hover {
    transform: rotate(5deg);
    transform: scale(1.05);
    filter: brightness(1.2);
}
/* ===== CENTER CHARACTER ===== */
.center-character {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -45%);
    width: 250px;
    height: 230px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
}

.center-character:hover {
    border-color: #db74c2;
    background: rgba(61, 250, 4, 0.1);
}
.lean {
        max-width: 250px;
}
/* ===== PARENTAL ADVISORY ===== */
.parental-advisory {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 15;
}

.advisory-box {
    background: #fff;
    border: 2px solid #000;
    padding: 5px 8px;
    text-align: center;
}

.advisory-text {
    display: block;
    font-family: 'Arial Black', sans-serif;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
    color: #000;
}

.explicit-text {
    display: block;
    font-family: 'Arial', sans-serif;
    font-size: 8px;
    font-weight: bold;
    color: #000;
    margin-top: 2px;
    letter-spacing: 1px;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 540px) {
    .album-cover {
        max-width: 350px;
        height: auto;
        aspect-ratio: 1/1;
    }
    .top-banner .text-display {
        font-size: 12px;
    }
    .hosted-by .text-display{
        font-size: 14px
    }
    .main-title {
       bottom: 60px; 
    }
    .main-title .text-display {
        font-size: 48px;
    }
    .instagram-text {
        top: 90px;
    }
    .steam-text {
        top: 115px;
    }
    .lastfm-text {
        top: 140px;
    }
    .instagram-text .text-display {
        font-size: 14px;
    }
    .lastfm-text .text-display {
        font-size: 14px;
    }
    .steam-text .text-display {
        font-size: 14px;
    }
    .center-character {
        width: 150px;
        height: 200px;
        max-width:200px;
    }
    .lean {
        max-width: 200px;
    }
    .star {
        width: 40px;
        height: 40px;
    }
    
    .stars-container {
        gap: 50px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.center-character:not(:has(.character-image[style*="block"])) .character-placeholder {
    animation: pulse 2s infinite;
}
