* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', 'Arial', sans-serif;
    background: #000;
    color: #fff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    background: rgba(255, 20, 147, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 9px 28px rgba(0, 0, 0, 0.45);
    z-index: 30;
}

.navbar h2 {
    margin: 0;
    font-size: 1.45rem;
    letter-spacing: .06em;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
    list-style: none;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: color .2s ease-in-out, transform .2s ease-in-out;
}

.navbar a:hover {
    color: #ffe4ff;
    transform: translateY(-1px);
}

/* HERO */
.hero {
    margin-top: 70px;
    min-height: 72vh;
    background: linear-gradient(rgba(10, 10, 10, 0.65), rgba(3, 3, 3, 0.9)), url('Blackpink.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero .overlay {
    text-align: center;
    color: #fff;
    padding: 36px;
    border: 2px solid rgba(255, 20, 147, 0.65);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.43);
    max-width: 860px;
    width: 100%;
}

.hero-image {
    width: min(360px, 100%);
    height: 360px;
    margin: 0 auto 28px;
    background: url('Blackpink.jpg') center/cover no-repeat;
    clip-path: polygon(50% 0%, 98% 35%, 79% 100%, 21% 100%, 2% 35%);
    border: 4px solid rgba(255, 20, 147, 0.75);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    letter-spacing: 0.16em;
    text-shadow: 0 0 18px rgba(255, 20, 147, 0.85), 0 0 25px rgba(255, 255, 255, 0.6);
}

.hero p {
    margin: 0;
    color: #ffd6fb;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 500;
}

/* CARD GRID */
.cards-container {
    width: min(1200px, 92%);
    margin: 40px auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
    padding: 0 8px 8px;
}

.member-card {
    background: #0a0a0a;
    border: 2px solid rgba(168, 0, 121, 0.62);
    border-radius: 14px;
    padding: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.66);
    transition: transform .24s ease, box-shadow .24s ease;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 38px rgba(255, 20, 147, 0.24);
}

.member-card .photo {
    width: 100%;
    height: 365px;
    border-radius: 11px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid rgba(255, 182, 193, 0.4);
    margin-bottom: 12px;
}

.member-card h3 {
    margin: 0;
    color: #ffb8e9;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.member-card p {
    margin: 4px 0 0;
    text-align: center;
    color: #f5f5f5;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero { min-height: 60vh; }
    .member-card .photo { height: 300px; }
}

@media (max-width: 600px) {
    .navbar { padding: 12px 14px; }
    .navbar h2 { font-size: 1.1rem; }
    .navbar ul { gap: 10px; }
    .hero { min-height: 50vh; }
    .member-card .photo { height: 240px; }
    .card-img { height: 150px; }
    .member-card img { height: 180px; }
    .gallery img { height: 150px; }
    .video-item video { height: 150px; }
    .lyrics { max-height: 200px; }
}

/* REVEAL SECTION */
.reveal-section {
    width: min(1200px, 92%);
    margin: 20px auto 60px;
    padding: 24px 12px;
    background: linear-gradient(125deg, rgba(255, 35, 150, 0.95), rgba(255, 88, 190, 0.9));
    border-radius: 18px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(32px);
    transition: all .7s ease;
}

.reveal-section.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-section h2 {
    margin: 0 0 16px;
    color: #fff;
    text-align: center;
    letter-spacing: .08em;
}

.reveal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.reveal-card {
    border: 2px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.14);
    padding: 16px;
    border-radius: 14px;
    color: #fff;
    backdrop-filter: blur(4px);
}

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.reveal-card h3 {
    margin: 0 0 8px;
}

.reveal-card p {
    margin: 0 0 14px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 8px 14px;
    color: #fff;
    background: #007bff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: #0056cf;
}

/* TENTANG.HTML STYLES */
.member-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.member-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.5);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform .3s ease, box-shadow .3s ease;
    text-align: center;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(255, 20, 147, 0.3);
}

.member-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.member-info h2 {
    color: #ffb8e9;
    margin: 0 0 8px;
    font-size: 1.4rem;
}

.member-info h3 {
    color: #ffd6fb;
    margin: 12px 0 6px;
    font-size: 1.1rem;
}

.member-info p {
    color: #fff;
    line-height: 1.6;
    margin: 0;
}

/* GALERI.HTML STYLES */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 20, 147, 0.5);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: pointer;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 20, 147, 0.4);
}

/* LAGU.HTML STYLES */
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 20, 147, 0.5);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform .3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item h3 {
    color: #ffb8e9;
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.video-item video {
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 200px;
}

/* LIRIK LAGU */
.lyrics {
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 20, 147, 0.3);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.lyrics h4 {
    margin: 0 0 8px;
    color: #ffb8e9;
    font-size: 1rem;
}

.lyrics pre {
    margin: 0;
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-wrap;
}

