/* ============================================================
   BLACK RIVER WHISKEY — styles.css
   ============================================================ */

/* GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; text-decoration: none !important; }
html { scroll-behavior: smooth; }
body { background: #000; color: #fff; font-family: 'Montserrat', sans-serif; overflow-x: hidden; width: 100%; position: relative; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 3px; }

a { color: #fff; transition: color 0.3s ease; }
a:hover { color: #d4af37; text-shadow: 0 0 10px rgba(212,175,55,0.5); }

.mob-br { display: none; }
.desk-br { display: block; }

.gold-grad {
    background: linear-gradient(90deg, #d4af37, #f1d592);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.gold { color: #d4af37; text-shadow: 0 0 10px rgba(212,175,55,0.5); }
.label-gold { color: #d4af37; font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 3px; }
.label-spaced { letter-spacing: 4px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.5);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}
.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 5%; }
.nav-logo { height: 48px; width: auto; transition: height 0.3s ease; }

.header-right { display: flex; align-items: center; }
.header-text-link {
    color: #d4af37;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    margin-right: 28px;
    letter-spacing: 1px;
    position: relative;
    top: 2px;
    transition: 0.3s;
}
.header-text-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: #d4af37;
    transition: width 0.3s ease;
}
.header-text-link:hover::after { width: 100%; }
.header-text-link:hover { color: #fff; }
.social-links-header a { color: #fff !important; margin-left: 16px; font-size: 17px; transition: 0.3s; display: inline-block; }
.social-links-header a:hover { color: #d4af37 !important; transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section { min-height: 100vh; position: relative; display: flex; align-items: center; padding: 120px 8% 60px; overflow: hidden; }
.hero-bg-img {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 30%, transparent), url('assets/hero.jpg') center/cover no-repeat;
    z-index: -1;
    transform: scale(1.04);
    animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content-wrap { max-width: 850px; z-index: 2; }
.hero-tag { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; font-weight: 700; letter-spacing: 3px; font-size: 12px; opacity: 0.8; }
.gold-line-accent { width: 36px; height: 2px; background: linear-gradient(90deg, #d4af37, #f1d592); flex-shrink: 0; }
.hero-section h1 { font-family: 'Bebas Neue'; font-size: clamp(54px, 8vw, 102px); line-height: 0.88; margin-bottom: 28px; }
.hero-text { font-size: 16px; opacity: 0.72; margin-bottom: 48px; line-height: 1.75; max-width: 560px; font-weight: 300; }

.hero-scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: fadeInUp 1s ease-out 2.2s forwards;
}
.hero-scroll-hint span { font-size: 9px; letter-spacing: 3px; font-weight: 700; opacity: 0.45; }
.scroll-mouse { width: 22px; height: 34px; border: 1px solid rgba(255,255,255,0.4); border-radius: 11px; position: relative; }
.scroll-mouse::after { content: ''; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 3px; height: 6px; background: #d4af37; border-radius: 3px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0%,100% { top: 5px; opacity: 1; } 50% { top: 16px; opacity: 0; } }

/* MUSIC BUTTONS */
.music-links-area { margin-top: 30px; }
.small-title { font-family: 'Bebas Neue', sans-serif; font-size: 13px; color: #666; margin-bottom: 16px; letter-spacing: 3px; }
.music-btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.m-btn {
    color: #fff; background: rgba(0,0,0,0.6);
    border: 1px solid #fff;
    padding: 12px 25px; border-radius: 50px;
    font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px;
    white-space: nowrap;
}
.m-btn:hover { background: #d4af37; color: #000; border-color: #d4af37; box-shadow: 0 0 20px rgba(212, 175, 55, 0.8); transform: translateY(-3px); }

/* ============================================================
   DIVIDERS
   ============================================================ */
.section-gold-divider { 
    width: 100%; height: 1px; 
    background: rgba(212,175,55,0.18); 
    position: relative; 
    z-index: 10; 
    display: flex; justify-content: center; align-items: center; 
}
.section-gold-divider::after { 
    content: ""; 
    position: absolute;
    width: 9px; height: 9px; 
    background: #d4af37; 
    transform: rotate(45deg); 
    box-shadow: 0 0 14px rgba(212,175,55,0.9); 
}

/* ============================================================
   NEW INTRO SECTION
   ============================================================ */
.new-intro-section { padding: 115px 8%; background: #000; display: flex; align-items: center; justify-content: center; }
.new-intro-container { max-width: 1300px; width: 100%; display: flex; align-items: center; gap: 90px; }
.new-intro-left { flex: 1; }
.new-intro-right { flex: 0.8; display: flex; justify-content: center; }
.ni-title { font-family: 'Bebas Neue'; font-size: clamp(36px, 4.5vw, 64px); line-height: 0.92; margin-bottom: 18px; }
.ni-meta { font-size: 11px; color: #777; margin-bottom: 28px; letter-spacing: 2px; text-transform: uppercase; }
.ni-divider { height: 1px; width: 100%; background: linear-gradient(90deg, rgba(212,175,55,0.6), transparent); margin-bottom: 28px; }
.ni-album-name { font-family: 'Bebas Neue'; font-size: 32px; margin-bottom: 18px; }
.ni-desc { font-size: 15px; opacity: 0.7; line-height: 1.85; margin-bottom: 38px; max-width: 90%; font-weight: 300; font-style: italic; }
.ni-image-box {
    padding: 10px; border: 1px solid rgba(212,175,55,0.35);
    border-radius: 12px; position: relative;
}
.ni-image-box::before {
    content: ''; position: absolute; inset: -1px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(212,175,55,0.2), transparent 60%);
    pointer-events: none;
}
.ni-img { width: 100%; max-width: 450px; border-radius: 6px; display: block; }

.ni-btn {
    background: #d4af37; color: #000;
    padding: 17px 42px; border-radius: 4px;
    font-family: 'Bebas Neue'; font-size: 20px;
    display: inline-flex; align-items: center; gap: 12px;
    border: none; transition: all 0.3s ease;
    animation: pulse-scream-gold 1.8s infinite; letter-spacing: 1px;
}
.ni-btn:hover { background: #fff; color: #000; transform: translateY(-3px); animation: none; box-shadow: 0 0 35px rgba(255,255,255,0.4); }

/* ============================================================
   PROMO SECTION
   ============================================================ */
.promo-section { padding: 115px 8%; background: #050505; }
.promo-container { max-width: 1200px; margin: 0 auto; display: flex; gap: 80px; align-items: center; }
.promo-left { flex: 1; position: relative; cursor: pointer; }
.promo-img { width: 100%; border-radius: 12px; border: 1px solid rgba(212,175,55,0.25); padding: 8px; display: block; transition: 0.4s ease; }
.promo-left:hover .promo-img { border-color: rgba(212,175,55,0.6); }

.promo-play-overlay {
    position: absolute; inset: 8px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0; transition: opacity 0.35s ease;
}
.promo-left:hover .promo-play-overlay { opacity: 1; }
.play-circle {
    width: 74px; height: 74px; border-radius: 50%;
    background: rgba(212,175,55,0.92);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #000; padding-left: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promo-play-overlay:hover .play-circle { transform: scale(1.12); box-shadow: 0 0 50px rgba(212,175,55,0.9); }

.promo-right { flex: 1.2; }
.section-h2 { font-family: 'Bebas Neue'; font-size: clamp(36px, 4vw, 56px); line-height: 1; margin-bottom: 12px; }
.meta-data { font-size: 13px; letter-spacing: 2px; font-weight: 700; }
.gold-sep { border: none; border-top: 1px solid rgba(212,175,55,0.3); margin: 28px 0; width: 80px; }
.promo-desc { margin-bottom: 36px; font-size: 15px; opacity: 0.72; line-height: 1.85; font-weight: 300; font-style: italic; }
.video-btn {
    background: #d4af37; border: none; padding: 16px 40px;
    border-radius: 4px; font-family: 'Bebas Neue'; font-size: 20px;
    color: #000; display: inline-flex; align-items: center; gap: 12px;
    transition: all 0.3s ease; box-shadow: 0 0 22px rgba(212,175,55,0.3);
    letter-spacing: 1px;
}
.video-btn:hover { transform: translateY(-3px); box-shadow: 0 0 45px rgba(212,175,55,0.7); background: #fff; color: #000; }

/* ============================================================
   ALBUM GRID
   ============================================================ */
.shop-section { padding: 115px 8%; background: #080808; text-align: center; }
.shop-container { max-width: 1300px; margin: 0 auto; }
.shop-title { font-family: 'Bebas Neue'; font-size: clamp(42px, 5vw, 62px); margin-bottom: 70px; }
.album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; }
.album-card {
    background: #000; padding: 30px 24px 35px;
    border-radius: 16px; border: 1px solid rgba(212,175,55,0.12);
    display: flex; flex-direction: column; align-items: center;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.album-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 60%);
    opacity: 0; transition: opacity 0.4s ease;
    pointer-events: none;
}
.album-card:hover { transform: translateY(-12px); border-color: rgba(212,175,55,0.5); box-shadow: 0 30px 70px rgba(0,0,0,0.8), 0 0 25px rgba(212,175,55,0.08); }
.album-card:hover::before { opacity: 1; }
.album-card img { width: 100%; border-radius: 10px; margin-bottom: 22px; transition: transform 0.5s ease; }
.album-card:hover img { transform: scale(1.04); }
.album-name { margin-bottom: 22px; font-size: 1rem; letter-spacing: 0.5px; opacity: 0.88; }
.album-badge { position: absolute; top: 18px; left: 18px; font-family: 'Bebas Neue', sans-serif; padding: 7px 14px; font-size: 13px; border-radius: 5px; letter-spacing: 1.5px; z-index: 10; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.badge-gold { background: #d4af37; color: #000; }
.badge-dark { background: rgba(0,0,0,0.85); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.shop-btn { padding: 11px 32px; border: 1px solid #d4af37; color: #d4af37; border-radius: 4px; font-size: 12px; font-weight: 700; transition: all 0.3s ease; letter-spacing: 1px; }
.shop-btn:hover { background: #d4af37; color: #000; box-shadow: 0 0 25px rgba(212,175,55,0.5); }

/* ============================================================
   QUOTE / MOOD SECTION
   ============================================================ */
.quote-section {
    padding: 130px 8%; background: #000;
    position: relative; overflow: hidden; text-align: center;
}
.quote-section::before {
    content: ''; position: absolute; inset: 0;
    background: url('assets/hero.jpg') center/cover no-repeat;
    opacity: 0.07; filter: grayscale(100%);
}
.quote-section::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.97) 75%);
}
.quote-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.quote-mark { font-family: Georgia, serif; font-size: 130px; color: rgba(212,175,55,0.18); line-height: 0.5; display: block; margin-bottom: 24px; }
.quote-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(30px, 4.5vw, 56px);
    line-height: 1.18; color: #fff; letter-spacing: 1.5px; margin-bottom: 32px;
}
.quote-attr { font-size: 11px; letter-spacing: 4px; color: #666; font-weight: 700; }
.quote-divider { width: 60px; height: 1px; background: linear-gradient(90deg, transparent, #d4af37, transparent); margin: 30px auto; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section { padding: 125px 8%; background: #080808; text-align: center; border-top: 1px solid rgba(212,175,55,0.12); }
.newsletter-content { max-width: 680px; margin: 0 auto; }
.newsletter-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px, 5vw, 66px); margin-bottom: 18px; }
.newsletter-desc { font-weight: 300; font-size: 15px; margin-bottom: 48px; opacity: 0.65; line-height: 1.75; }
.signup-form { display: flex; gap: 10px; justify-content: center; }
.signup-form input {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.13);
    padding: 16px 28px; border-radius: 4px; color: #fff;
    font-family: 'Montserrat', sans-serif; font-size: 12px;
    width: 60%; outline: none; transition: 0.3s; letter-spacing: 1px;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.3); letter-spacing: 2px; font-size: 11px; }
.signup-form input:focus { border-color: #d4af37; box-shadow: 0 0 22px rgba(212,175,55,0.12); background: rgba(212,175,55,0.03); }
.signup-form button {
    background: #d4af37; color: #000; border: none;
    padding: 16px 38px; border-radius: 4px;
    font-family: 'Bebas Neue', sans-serif; font-size: 20px;
    cursor: pointer; transition: 0.3s; letter-spacing: 1px;
}
.signup-form button:hover { background: #fff; transform: scale(1.04); box-shadow: 0 0 28px rgba(212,175,55,0.35); }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { position: relative; padding: 90px 8% 0; background: #000; border-top: 1px solid rgba(212,175,55,0.18); overflow: hidden; }
.footer-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.1; z-index: 0; pointer-events: none; }
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 2fr 1.5fr; gap: 60px; max-width: 1300px; margin: 0 auto; padding-bottom: 72px; }
.f-brand { display: flex; align-items: center; gap: 18px; }
.f-logo { width: 88px; height: auto; flex-shrink: 0; }
.f-brand-text { display: flex; flex-direction: column; gap: 8px; }
.f-brand-text .label-gold { font-size: 14px; }
.f-brand-text .f-desc { font-size: 12px; opacity: 0.5; line-height: 1.65; }
.f-contact h3 { font-family: 'Bebas Neue'; font-size: 22px; margin-bottom: 22px; letter-spacing: 2px; color: #d4af37; }
.f-contact p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; gap: 14px; opacity: 0.72; }
.f-contact p i { width: 20px; text-align: center; font-size: 15px; }
.f-contact a.email-link { color: #fff; font-size: 14px; transition: color 0.3s; }
.f-contact a.email-link:hover { color: #d4af37; }
.f-socials { display: flex; gap: 11px; margin-top: 28px; flex-wrap: wrap; }
.f-socials a i { color: #fff !important; font-size: 17px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.f-socials a:hover i { border-color: #d4af37; color: #d4af37 !important; transform: translateY(-3px); box-shadow: 0 0 16px rgba(212,175,55,0.3); }
.footer-bottom { position: relative; z-index: 1; border-top: 1px solid rgba(212,175,55,0.08); padding: 28px 0; text-align: center; font-size: 11px; opacity: 0.38; }

/* ============================================================
   ALBUM DETAIL PAGES
   ============================================================ */
.album-details-section { padding: 180px 8% 100px; min-height: 100vh; background: #000; }
.album-details-container { max-width: 1300px; margin: 0 auto; display: flex; align-items: flex-start; gap: 80px; }
.album-info-col { flex: 1.5; }
.album-art-col { position: sticky; top: 110px; flex: 1; max-width: 420px; }
.band-name-gold { color: #d4af37; font-family: 'Montserrat', sans-serif; font-weight: 400; letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; text-transform: uppercase; }
.album-page-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(46px, 5.5vw, 76px); line-height: 0.88; margin-bottom: 22px; }
.album-quote { font-style: italic; color: #d4af37; font-size: 15px; margin-bottom: 20px; border-left: 3px solid #d4af37; padding-left: 18px; opacity: 0.88; line-height: 1.65; }
.album-description { font-size: 16px; opacity: 0.68; line-height: 1.85; margin-bottom: 40px; max-width: 95%; font-weight: 300; }
.detail-art { width: 100%; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.85), 0 0 0 1px rgba(212,175,55,0.25); padding: 10px; background: #050505; transition: box-shadow 0.4s; }
.detail-art:hover { box-shadow: 0 30px 80px rgba(0,0,0,0.85), 0 0 35px rgba(212,175,55,0.18); }

/* ALBUM PAGE GOLD PILL BUTTON */
.buy-now-pulse {
    background-color: #d4af37 !important; color: #000 !important;
    padding: 18px 50px !important; border-radius: 4px !important;
    font-family: 'Bebas Neue', sans-serif !important; font-size: 26px !important;
    border: none !important; cursor: pointer;
    text-decoration: none !important; display: inline-flex !important;
    align-items: center; justify-content: center; gap: 14px;
    margin-top: 10px; margin-bottom: 35px !important;
    letter-spacing: 1px;
    box-shadow: 0 0 0 0 rgba(212,175,55,0.7);
    animation: pulse-scream-gold 1.8s infinite;
    transition: all 0.3s ease;
}
.buy-now-pulse:hover { background-color: #fff !important; transform: translateY(-3px); animation: none; box-shadow: 0 0 40px rgba(255,255,255,0.45) !important; }

/* FORMAT TEXT */
.format-text { display: block; font-size: 11px; color: #777; margin-top: 0 !important; margin-bottom: 40px; letter-spacing: 3px; text-transform: uppercase; }
.format-text i { margin-right: 5px; color: rgba(255,255,255,0.5); }

/* TRACKLIST */
.tracklist-box { border-top: 1px solid rgba(212,175,55,0.22); padding-top: 32px; margin-bottom: 40px; }
.track-header { font-family: 'Bebas Neue', sans-serif; color: #d4af37; font-size: 22px; margin-bottom: 22px; letter-spacing: 2px; }
.track-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 0; }
.track-list li { display: flex; align-items: center; padding: 13px 0 13px 6px; border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.3s ease; }
.track-list li:hover { padding-left: 14px; border-bottom-color: #d4af37; background: linear-gradient(90deg, rgba(212,175,55,0.08), transparent); }
.track-list li.hit-song { border-bottom-color: rgba(212,175,55,0.32); background: linear-gradient(90deg, rgba(212,175,55,0.04), transparent); }
.track-list li.hit-song .song-title { color: #d4af37; font-weight: 600; }
.song-title { font-size: 14px; color: #fff; font-weight: 300; line-height: 1.4; }

/* COMING SOON LABEL */
.coming-soon-label {
    display: inline-block; border: 1px solid rgba(212,175,55,0.35);
    color: #d4af37; font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; padding: 10px 28px; border-radius: 5px;
    letter-spacing: 3px; margin-bottom: 35px; background: rgba(212,175,55,0.04);
}

/* NOTIFY BOX */
.notify-box {
    background: rgba(212,175,55,0.04); border: 1px solid rgba(212,175,55,0.18);
    border-radius: 12px; padding: 28px 30px; margin-bottom: 40px;
}
.notify-box p { font-size: 13px; opacity: 0.65; margin-bottom: 15px; letter-spacing: 0.5px; }
.notify-form { display: flex; gap: 10px; }
.notify-form input {
    flex: 1; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.13);
    padding: 12px 20px; border-radius: 4px;
    color: #fff; font-family: 'Montserrat', sans-serif;
    font-size: 12px; outline: none; transition: 0.3s;
}
.notify-form input:focus { border-color: #d4af37; }
.notify-form button {
    background: #d4af37; color: #000; border: none;
    padding: 12px 24px; border-radius: 4px;
    font-family: 'Bebas Neue', sans-serif; font-size: 16px;
    cursor: pointer; transition: 0.3s; white-space: nowrap;
}
.notify-form button:hover { background: #fff; }

/* BACK BUTTON */
.back-btn { display: inline-flex; align-items: center; gap: 8px; color: #666; font-size: 12px; font-weight: 700; letter-spacing: 2px; transition: 0.3s; margin-bottom: 40px; }
.back-btn:hover { color: #d4af37; transform: translateX(-5px); }

/* PURCHASE BTN */
.purchase-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    background: #d4af37; color: #000; font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; padding: 16px 45px; border-radius: 4px;
    border: none; cursor: pointer; margin-bottom: 40px;
    transition: 0.3s; box-shadow: 0 0 18px rgba(212,175,55,0.3); letter-spacing: 1px;
}
.purchase-btn:hover { background: #fff; color: #000; transform: translateY(-3px); box-shadow: 0 0 38px rgba(212,175,55,0.55); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-text-section { padding: 110px 8%; max-width: 920px; margin: 0 auto; text-align: center; }
.about-desc { font-size: 17px; line-height: 1.92; opacity: 0.82; margin-bottom: 32px; font-weight: 300; }
.about-pull-quote {
    border-left: 3px solid #d4af37; border-right: 3px solid #d4af37;
    padding: 28px 40px; margin: 55px 0;
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(22px, 3vw, 36px);
    color: #d4af37; letter-spacing: 1px; line-height: 1.3;
}
.creator-box {
    border: 1px solid rgba(212,175,55,0.22); padding: 48px 45px;
    border-radius: 14px; margin-top: 62px;
    background: rgba(212,175,55,0.025); position: relative; overflow: hidden;
}
.creator-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #d4af37, transparent); }
.creator-title { font-family: 'Bebas Neue'; font-size: 26px; color: #d4af37; margin-bottom: 16px; letter-spacing: 2px; }
.creator-box p { font-size: 14px; opacity: 0.62; line-height: 1.92; }
.about-hero-override { background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.93) 90%), url('assets/about.jpg') top center/cover no-repeat !important; }

/* SUCCESS PAGE */
.success-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 150px 20px 100px; background: #000; }
.success-box { border: 1px solid rgba(212,175,55,0.28); padding: 72px 60px; border-radius: 16px; max-width: 600px; background: rgba(212,175,55,0.025); box-shadow: 0 0 70px rgba(212,175,55,0.07); }
.success-box h1 { font-family: 'Bebas Neue', sans-serif; font-size: 72px; line-height: 0.9; margin-bottom: 30px; }
.success-desc { font-size: 16px; opacity: 0.72; margin-bottom: 40px; line-height: 1.75; font-weight: 300; }

/* LEGAL */
.legal-section { padding: 150px 8% 100px; max-width: 1000px; margin: 0 auto; color: #ccc; }
.legal-section h1 { font-family: 'Bebas Neue'; color: #d4af37; font-size: clamp(40px, 5vw, 64px); margin-bottom: 12px; }
.legal-section h2 { font-family: 'Bebas Neue'; color: #fff; font-size: 24px; margin-top: 45px; margin-bottom: 18px; letter-spacing: 1px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 12px; }
.legal-section p { font-size: 14px; line-height: 1.92; margin-bottom: 22px; opacity: 0.82; }
.last-updated { font-size: 12px; color: #555; margin-bottom: 45px; display: block; letter-spacing: 1px; }

/* 404 */
.error-section { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at center, #0e0e0e 0%, #000 100%); padding: 150px 20px 100px; }
.error-content { max-width: 600px; }
.error-code { font-family: 'Bebas Neue', sans-serif; font-size: clamp(90px, 16vw, 165px); line-height: 1; color: transparent; -webkit-text-stroke: 2px #d4af37; margin-bottom: 18px; opacity: 0.38; }
.error-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 5vw, 56px); color: #fff; margin-bottom: 22px; letter-spacing: 2px; }
.error-desc { color: #555; font-size: 16px; line-height: 1.75; margin-bottom: 45px; font-weight: 300; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } } 100% { opacity: 1; transform: scale(1.28); } }
@keyframes pulse-scream-gold { 0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); } 70% { box-shadow: 0 0 0 22px rgba(212,175,55,0); } 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); } }

.animate-left { opacity: 0; animation: slideInLeft 1s ease-out forwards; animation-delay: 0.2s; }
.animate-right { opacity: 0; animation: slideInRight 1s ease-out forwards; animation-delay: 0.4s; }
.animate-fade-up { opacity: 0; animation: fadeInUp 1s ease-out forwards; animation-delay: 0.8s; }
.animate-fade-up-buttons { opacity: 0; animation: fadeInUp 1s ease-out forwards; animation-delay: 1.2s; }

/* Adjusted Reveal states for stability */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 1s ease-out, transform 1s ease-out; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 1s ease-out, transform 1s ease-out; }
.reveal-up { opacity: 0; transform: translateY(40px); transition: opacity 1s ease-out, transform 1s ease-out; }
.reveal-left.active, .reveal-right.active, .reveal-up.active { opacity: 1; transform: translate(0); }

.delay-100 { transition-delay: 0.15s; }
.delay-200 { transition-delay: 0.3s; }
.delay-300 { transition-delay: 0.45s; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .header-right { gap: 4px; }
    .header-text-link { font-size: 15px; margin-right: 12px; }
    .social-links-header a { font-size: 15px; margin-left: 10px; }
    .mob-br { display: block; }
    .desk-br { display: none; }

    .hero-section { padding-top: 110px; padding-left: 20px; padding-right: 20px; }
    .hero-bg-img { background-position: center; }
    .hero-section h1 { font-size: 46px; }
    .music-btn-row { flex-direction: column; }
    .m-btn { width: 100%; justify-content: center; padding: 15px 0; }
    .hero-scroll-hint { display: none; }

    .new-intro-section { padding: 70px 5%; }
    .ni-meta { font-size: 9px; letter-spacing: 0.5px; white-space: nowrap; }
    .new-intro-container { flex-direction: column; gap: 45px; }
    .new-intro-left { text-align: center; width: 100%; }
    .new-intro-right { width: 100%; }
    .ni-title { font-size: 38px; line-height: 1; }
    .ni-desc { font-size: 14px; margin-left: auto; margin-right: auto; }
    .ni-btn { width: 100%; justify-content: center; }
    .ni-image-box, .ni-img { width: 100%; max-width: 100%; }
    .ni-divider { background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent); }

    .promo-section { padding: 70px 5%; }
    .promo-container { flex-direction: column; gap: 40px; }
    .promo-play-overlay { opacity: 1; background: rgba(0,0,0,0.2); }

    .shop-section { padding: 70px 5%; }
    .album-grid { grid-template-columns: 1fr; gap: 22px; }

    .quote-section { padding: 80px 5%; }
    .quote-mark { font-size: 80px; }
    .quote-text { font-size: 26px; }

    .newsletter-section { padding: 80px 5%; }
    .signup-form { flex-direction: column; width: 100%; }
    .signup-form input { width: 100%; text-align: center; }
    .signup-form button { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; gap: 48px; }
    .f-brand { justify-content: center; }
    .f-logo { width: 78px; }
    .f-contact { text-align: center; }
    .f-contact p { justify-content: center; }
    .f-socials { justify-content: center; }

    .album-details-section { padding-top: 130px; padding-left: 5%; padding-right: 5%; }
    .album-details-container { flex-direction: column-reverse; gap: 38px; }
    .album-art-col { position: relative; top: 0; width: 100%; max-width: 370px; margin: 0 auto; }
    .album-page-title { font-size: 46px; }
    .track-list { grid-template-columns: 1fr; }
    .format-text { text-align: center; }
    .buy-now-pulse { width: 100% !important; margin-bottom: 28px !important; }
    .notify-form { flex-direction: column; }
    .notify-form button { width: 100%; }

    .about-text-section { padding: 70px 5%; }
    .about-pull-quote { padding: 22px 22px; font-size: 22px; margin: 38px 0; }
    .creator-box { padding: 30px 22px; }

    .success-box { padding: 45px 22px; width: 100%; }
    .success-box h1 { font-size: 44px; }
    .purchase-btn { width: 100%; }
}

/* ============================================================
   COMPACT FOOTER
   ============================================================ */
.site-footer { position: relative; background: #000; border-top: 1px solid rgba(212,175,55,0.15); overflow: hidden; }
.sf-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.07; pointer-events: none; }
.sf-inner { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; padding: 32px 5%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; }
.sf-brand { display: flex; align-items: center; gap: 14px; justify-self: start; }
.sf-logo { height: 40px; width: auto; opacity: 0.85; }
.sf-tagline { font-family: 'Montserrat', sans-serif; font-size: 10px; color: rgba(255,255,255,0.28); line-height: 1.6; max-width: 180px; }
.sf-socials { display: flex; gap: 10px; justify-self: center; }
.sf-socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.38) !important; font-size: 13px; text-decoration: none; transition: all 0.2s; }
.sf-socials a:hover { border-color: #d4af37; color: #d4af37 !important; box-shadow: 0 0 12px rgba(212,175,55,0.25); transform: translateY(-2px); }
.sf-right { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; justify-self: end; }
.sf-email { font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(255,255,255,0.42) !important; text-decoration: none !important; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.sf-email:hover { color: #d4af37 !important; }
.sf-email i { color: #d4af37; font-size: 11px; }
.sf-story { font-family: 'Montserrat', sans-serif; font-size: 11px; color: rgba(255,255,255,0.42) !important; text-decoration: none !important; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.sf-story:hover { color: #d4af37 !important; }
.sf-story i { color: #d4af37; font-size: 11px; }
.sf-legal { display: flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-size: 9px; color: rgba(255,255,255,0.18); letter-spacing: 1px; text-transform: uppercase; }
.sf-legal a { color: rgba(255,255,255,0.18) !important; text-decoration: none !important; transition: color 0.2s; }
.sf-legal a:hover { color: rgba(255,255,255,0.5) !important; }
.sf-bottom { position: relative; z-index: 1; text-align: center; padding: 14px 5%; border-top: 1px solid rgba(255,255,255,0.04); font-family: 'Montserrat', sans-serif; font-size: 9px; color: rgba(255,255,255,0.16); letter-spacing: 1px; }
@media (max-width: 767px) {
    .sf-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 28px 5%; gap: 20px; }
    .sf-brand { flex-direction: column; align-items: center; justify-self: center; }
    .sf-tagline { max-width: 260px; text-align: center; }
    .sf-right { align-items: center; justify-self: center; }
    .sf-socials { justify-self: center; }
}
