:root { --primary: #ff0055; --bg: #050505; --card-bg: #111; --text: #fff; --soda: #FF813F; }
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* TRANSITION LOADER */
#loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; display: flex; justify-content: center; align-items: center;
    z-index: 9999; transition: opacity 0.6s ease-in-out;
}
.loading-text {
    font-weight: 900; font-size: clamp(30px, 8vw, 60px); fill: none;
    stroke: var(--primary); stroke-width: 2; stroke-dasharray: 1000;
    stroke-dashoffset: 1000; animation: drawName 4s forwards ease-in-out;
    text-transform: uppercase; letter-spacing: 10px;
}
@keyframes drawName {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: 0; fill: var(--primary); }
}
.loader-hidden { opacity: 0; pointer-events: none; }

/* NAVBAR & NAV-LINKS */
.navbar { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background: rgba(0,0,0,0.95); z-index: 1000; border-bottom: 1px solid #222; }
.logo { color: var(--primary); font-weight: 900; letter-spacing: 2px; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: #fff; text-decoration: none; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }

/* HERO SETUP WITH PULSE */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; flex-direction: column; }
.animate-title { font-size: clamp(2.5rem, 10vw, 5rem); animation: neon 2s infinite alternate; letter-spacing: 8px; }
@keyframes neon { from { text-shadow: 0 0 10px var(--primary); } to { text-shadow: 0 0 30px var(--primary); transform: scale(1.02); } }
.release-date { font-weight: 800; letter-spacing: 3px; margin: 15px 0; font-size: 0.9rem; }
.cta-button { display: inline-block; padding: 12px 30px; background: var(--primary); color: #fff; text-decoration: none; border-radius: 50px; font-weight: bold; }

/* ALBUM STATUS IN A PERFECT ROW */
.section { padding: 80px 8%; }
.section-title { font-size: 1.8rem; border-left: 4px solid var(--primary); padding-left: 10px; margin-bottom: 35px; }
.album-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.art-card { max-width: 220px; }
.art-card img { width: 100%; border-radius: 10px; border: 1px solid #333; transition: 0.3s; }
.art-card img:hover { transform: scale(1.05); border-color: var(--primary); }

.progress-bg { width: 100%; max-width: 500px; background: #222; height: 10px; border-radius: 5px; margin: 0 auto; overflow: hidden; }
.progress-fill { height: 100%; background: var(--primary); box-shadow: 0 0 10px var(--primary); }
.status-sub { color: #888; font-size: 0.75rem; text-align: center; margin-top: 10px; }

/* CATALOGUE FRAME CLOSER LOOK */
.unified-catalog { max-width: 800px; margin: 0 auto; }

/* 3 VIDEO COLUMN DISPLAY */
.video-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.video-container iframe { border-radius: 10px; border: 1px solid #222; }
.video-caption { font-size: 0.75rem; color: #888; text-align: center; margin-top: 10px; }

/* BALANCED SOCIAL GRID */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 25px; justify-items: center; }
.social-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.social-item span { font-size: 0.65rem; font-weight: 600; text-transform: uppercase; color: #aaa; }
.grid-box { width: 60px; height: 60px; background: #111; border-radius: 12px; border: 1px solid #222; display: flex; justify-content: center; align-items: center; color: #fff; font-size: 1.2rem; text-decoration: none; transition: 0.4s; }
.grid-box:hover { background: var(--primary); transform: translateY(-5px); }

/* BUSINESS INQUIRIES CARD */
.contact-card { text-align: center; background: #111; padding: 40px; border-radius: 20px; border: 1px solid #222; }
.email-btn { display: inline-block; background: var(--primary); color: #fff; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.85rem; margin-top: 20px; transition: 0.3s; }

/* CAREFULLY SCALED SMALL QR SETUP */
.support-container { background: var(--card-bg); padding: 30px; border-radius: 20px; text-align: center; border: 1px solid #222; max-width: 600px; margin: 0 auto; }
.support-flex { display: flex; flex-direction: column; align-items: center; gap: 15px; }
.small-qr { width: 100px; height: 100px; background: #fff; padding: 5px; border-radius: 8px; display: block; }
.qr-label { font-size: 0.6rem; color: #666; text-transform: uppercase; margin-top: 5px; }
.soda-btn { background: var(--soda); color: #fff; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 800; font-size: 0.8rem; }

/* REDDISH PINK BRANDED FOOTER */
.site-footer { padding: 40px; text-align: center; border-top: 1px solid #222; }
.footer-branding { color: var(--primary) !important; font-weight: 900 !important; font-size: 1.1rem !important; margin-top: 10px; text-transform: uppercase; letter-spacing: 2px; }

/* RESPONSIVE PHONE FIXES */
@media (max-width: 768px) {
    .nav-links { gap: 10px; }
    .nav-links a { font-size: 0.6rem; }
    .social-grid { grid-template-columns: repeat(3, 1fr); }
    .art-card { max-width: 150px; }
}
