/* =========================================
   0. CUSTOM SCROLLBAR
   ========================================= */
/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #000 #fff;
    scroll-behavior: smooth; 
}

/* Chrome, Edge, Safari, Opera */
::-webkit-scrollbar {
    width: 16px; 
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-left: 2px solid #000000; 
}

::-webkit-scrollbar-thumb {
    background-color: #000000;
    border: 4px solid #ffffff; 
    border-radius: 0; 
}

::-webkit-scrollbar-thumb:hover {
    background-color: #000000;
    border: 1px solid #ffffff; 
}

/* =========================================
   1. GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: 'Archivo Black', sans-serif;
    min-height: 100vh;
    overflow-x: hidden; 
}

.lucide {
    width: 32px;
    height: 32px;
    stroke-width: 3px;
}

/* =========================================
   2. FIXED HEADER
   ========================================= */
header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: -1px;
    padding: 20px 30px;
    transition: color 0.3s ease, border-color 0.3s ease; 
    backdrop-filter: blur(2px);
}

.header-light { color: #000; }
.header-dark { color: #fff; }

.nav-info { display: flex; align-items: center; gap: 15px; }

/* INFO BUTTON (NO OUTLINE) */
.info-btn {
    text-decoration: none;
    font-weight: 900;
    color: inherit; 
    border: none; /* OUTLINE REMOVED */
    padding: 5px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.info-btn:hover {
    opacity: 0.6; /* Simple hover effect */
}

.divider { font-weight: 100; font-size: 1.5rem; }
.socials { display: flex; gap: 15px; align-items: center; }
.socials a { color: inherit; text-decoration: none; font-size: 1.4rem; transition: opacity 0.3s; }
.socials a:hover { opacity: 0.6; }

/* =========================================
   3. GLOBAL BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Base border */
}

/* Visibility State */
.back-to-top.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

/* Theme States */
.btn-light {
    color: #000;
    border-color: #000;
    background: rgba(255, 255, 255, 0.1);
}

.btn-light:hover {
    background: #000;
    color: #fff;
}

.btn-dark {
    color: #fff;
    border-color: #fff;
    background: rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background: #fff;
    color: #000;
}


/* =========================================
   4. SECTION: LANDING PAGE
   ========================================= */
.landing-page {
    height: 100vh; 
    display: flex;
    flex-direction: column;
    padding: 30px; 
    padding-top: 100px; 
    position: relative;
    z-index: 2;
    background: #fff;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.headline {
    font-size: clamp(1.5rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.countdown { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.time-unit { display: flex; flex-direction: column; align-items: center; }
.label { font-family: 'Roboto', sans-serif; font-weight: 900; font-size: 1.5rem; color: #000; letter-spacing: -1px; margin-top: 10px; }

.slot-container { display: flex; justify-content: center; font-size: clamp(4rem, 10vw, 8rem); height: 1.1em; overflow: hidden; line-height: 1.1; }
.reel-window { height: 100%; width: 0.75em; position: relative; text-align: center; }
.reel-window + .reel-window { margin-left: -0.05em; }
.reel { font-size: inherit; letter-spacing: -5px; line-height: 1.1; transform: translateY(0); transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); display: flex; flex-direction: column; }

.landing-footer { display: flex; justify-content: center; padding-bottom: 20px; }
.cta-button { display: flex; align-items: stretch; text-decoration: none; border: 2px solid transparent; }
.cta-text { background-color: #000; color: #fff; padding: 10px 40px; font-size: 2.5rem; text-transform: uppercase; display: flex; align-items: center; letter-spacing: -1px; transition: all 0.3s ease; }
.cta-icon-box { background-color: #000; color: #fff; display: flex; align-items: center; justify-content: center; padding: 0 15px; border-left: 2px solid #fff; transition: all 0.3s ease; }
.cta-button:hover .cta-text { background-color: #fff; color: #000; border-top: 2px solid #000; border-bottom: 2px solid #000; border-left: 2px solid #000; }
.cta-button:hover .cta-icon-box { background-color: #fff; color: #000; border-left: 2px solid #000; border-top: 2px solid #000; border-bottom: 2px solid #000; border-right: 2px solid #000; }

/* =========================================
   5. SECTION: INFO (BLACK)
   ========================================= */
.info-page {
    min-height: 100vh;
    background-color: #000;
    color: #fff;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-top: 10px solid #fff; 
}

.info-grid { display: grid; grid-template-columns: 1fr; gap: 60px; max-width: 1200px; margin: 0 auto; width: 100%; }
.bio-stats { display: flex; flex-wrap: wrap; gap: 40px; border-bottom: 2px solid #fff; padding-bottom: 40px; }
.stat-line { display: flex; flex-direction: column; }
.small-label { font-family: 'Roboto', sans-serif; font-size: 1rem; color: #888; margin-bottom: 5px; font-weight: 500; }
.huge-text { font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; letter-spacing: -3px; text-transform: uppercase; }
.bio-text p { font-size: clamp(1.5rem, 4vw, 3rem); text-transform: uppercase; line-height: 1.1; letter-spacing: -1px; }
.highlight { color: #000; background-color: #fff; padding: 0 5px; }
.skills-list ul { list-style: none; margin-top: 20px; display: flex; flex-wrap: wrap; gap: 15px; }
.skills-list li { border: 2px solid #fff; padding: 10px 20px; font-size: 1.2rem; text-transform: uppercase; transition: background 0.3s, color 0.3s; cursor: default; }
.skills-list li:hover { background: #fff; color: #000; }

.marquee-container { margin-top: auto; padding-top: 50px; overflow: hidden; white-space: nowrap; display: flex; position: relative; }
.marquee-content { display: inline-block; font-size: 5rem; font-weight: 900; letter-spacing: -2px; animation: scroll 15s linear infinite; padding-right: 20px; color: transparent; -webkit-text-stroke: 2px #fff; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* =========================================
   6. SECTION: DISCOGRAPHY (WHITE)
   ========================================= */
.discography-page {
    min-height: 100vh;
    background-color: #fff;
    color: #000;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-top: 10px solid #000; 
}

.section-header { font-size: clamp(3rem, 6vw, 5rem); text-transform: uppercase; letter-spacing: -3px; border-bottom: 4px solid #000; margin-bottom: 60px; padding-bottom: 10px; }
.release-container { max-width: 1400px; margin: 0 auto; width: 100%; }
.release-title { font-size: clamp(2rem, 5vw, 4rem); text-transform: uppercase; letter-spacing: -2px; margin-bottom: 40px; }

.disks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: start; }
.disk-card { display: flex; flex-direction: column; gap: 15px; }
.disk-image-frame { width: 100%; aspect-ratio: 1/1; overflow: hidden; border: 4px solid #000; background: #000; transition: transform 0.3s ease; }
.disk-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.disk-image-frame:hover { transform: scale(0.98); }
.disk-info { display: flex; justify-content: space-between; align-items: center; border-top: 2px solid #000; padding-top: 10px; }
.disk-tag { font-size: 2rem; font-weight: 900; letter-spacing: -1px; }
.disk-format { font-family: 'Roboto', sans-serif; font-weight: 500; font-size: 0.9rem; color: #555; text-transform: uppercase; }

/* =========================================
   7. SECTION: SITE FOOTER (BLACK)
   ========================================= */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 30px;
    border-top: 10px solid #fff; 
    display: flex;
    flex-direction: column;
    overflow: hidden; 
    width: 100%;
    position: relative;
}

.footer-container { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 40px; width: 100%; }
.footer-branding { flex: 1; min-width: 0; }
.giant-footer-logo { font-size: clamp(4rem, 15vw, 12rem); line-height: 0.9; letter-spacing: -4px; margin: 0; white-space: nowrap; }

.footer-details { display: flex; flex-direction: column; gap: 30px; text-align: right; align-items: flex-end; min-width: 300px; }
.label-status-box { border: 2px solid #fff; padding: 10px 20px; display: inline-flex; flex-direction: column; align-items: flex-end; background: #000; }
.footer-label { font-family: 'Roboto', sans-serif; font-size: 0.8rem; color: #aaa; margin-bottom: 5px; }
.footer-value { font-size: 1.5rem; font-weight: 900; text-transform: uppercase; }

.footer-socials-list { display: flex; gap: 20px; }
.footer-socials-list a { color: #fff; font-size: 2rem; transition: transform 0.3s ease; }
.footer-socials-list a:hover { transform: translateY(-5px); }
.copyright-text { font-family: 'Roboto', sans-serif; font-size: 0.8rem; color: #666; line-height: 1.4; }

/* =========================================
   8. MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    header { font-size: 1.2rem; padding: 15px 20px; }
    .landing-page { padding-top: 80px; }
    
    .countdown { gap: 15px; }
    .reel-window { width: 0.7em; }
    .reel { letter-spacing: -2px; }
    .label { font-size: 1rem; }
    
    .info-page { padding: 30px 20px; }
    .bio-stats { gap: 30px; }
    .marquee-content { font-size: 3rem; }
    
    .discography-page { padding: 30px 20px; }
    .section-header { margin-bottom: 40px; font-size: 2.5rem; }
    
    .footer-container { flex-direction: column; align-items: flex-start; }
    .footer-details { align-items: flex-start; text-align: left; width: 100%; min-width: auto; }
    .label-status-box { align-items: flex-start; width: 100%; }
    .giant-footer-logo { letter-spacing: -2px; }
    
    .back-to-top { bottom: 20px; right: 20px; }
}