/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* BACKGROUND MERAH CERAH */
    background-color: #FF1A1A; 
    /* TEKS HITAM PEKAT */
    color: #000000;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* LOGO */
.logo-area {
    margin-top: 30px;
    margin-bottom: 20px;
}
.logo-img {
    width: 120px;
    height: auto;
    /* Border hitam tipis biar logo pop-up di background merah */
    border: 2px solid black; 
    border-radius: 10px;
}

/* HEADINGS & TEXT */
h2 {
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.bold-title {
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 30px 0 10px 0;
    letter-spacing: -1px;
    /* Efek outline putih dikit biar tegas */
    text-shadow: 2px 2px 0px rgba(255,255,255,0.2);
}

/* BUTTONS */
.btn-main {
    display: inline-block;
    background-color: #000000;
    color: #FF1A1A; /* Teks merah di tombol hitam */
    padding: 15px 40px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    border: 2px solid black;
    transition: all 0.3s ease;
    box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
}

.btn-main:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 5px 8px 0px rgba(0,0,0,0.2);
}

/* ALBUM COVER */
.album-cover {
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    border: 3px solid black;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.15);
    margin: 20px 0;
}

/* MARQUEE / TEKS BERGERAK */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: #000000;
    color: #FF1A1A; /* Teks merah di background hitam */
    padding: 10px 0;
    margin: 20px 0;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.small-marquee {
    font-size: 0.9rem;
    background-color: transparent;
    color: black;
    border: none;
    padding: 5px 0;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}

.left-to-right .marquee-content {
    animation: scroll-right 15s linear infinite;
}

/* Keyframes Animasi */
@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

@keyframes scroll-right {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* STORE & EMBEDS */
.embed-container {
    background-color: #ffffff;
    border: 3px solid black;
    border-radius: 10px;
    padding: 10px;
    min-height: 200px;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-box {
    color: #555;
    font-style: italic;
}

/* FOOTER & MEMBER LINK */
.member-link {
    display: block;
    margin-top: 40px;
    color: black;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.1rem;
}

.back-link {
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 2px solid black;
}

/* MEMBER PAGE SPECIFIC */
.input-field {
    width: 100%;
    padding: 15px;
    border: 2px solid black;
    border-radius: 10px;
    font-size: 1rem;
    background: white;
}