/* --- FONTS & RESET --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Oswald:wght@500;700;800&display=swap');

* { box-sizing: border-box; }

body {
    background-color: #0f0f0f;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin: 0; padding: 0; 
    padding-bottom: 120px;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- NEURO-SYNC PRELOADER --- */
#neuro-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #000;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

#neuro-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.neuro-visual {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(138, 43, 226, 0.3);
    border-top-color: #8a2be2;
    border-radius: 50%;
    animation: neuro-spin 1s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
    margin-bottom: 20px;
}

#neuro-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #8a2be2;
    text-transform: uppercase;
    animation: pulse-text 1.5s infinite;
}

@keyframes neuro-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* --- BACKGROUND GLOW --- */
.bg-glow {
    position: fixed; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px; left: 50%; transform: translateX(-50%);
    z-index: -1; 
    pointer-events: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6, 
.nav-btn, .btn, 
.hero-title, .section-title, .footer-title, 
#drop-title-label, .accordion-btn, .beat-price {
    font-family: 'Century Gothic', 'Segoe UI', 'Oswald', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    text-align: center;
}

/* --- GLOBAL IMAGES FIX --- */
img {
    max-width: 100%;
    height: auto;
    object-fit: cover; 
}

/* --- NAVIGATION --- */
.main-navigation {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem;
    background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(15px);
    position: sticky; top: 0; 
    z-index: 9999; 
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

a.nav-logo { text-decoration: none !important; display: flex; align-items: center; color: #ffffff !important; }
.nav-logo img { max-height: 50px; width: auto; display: block; }
.logo-text { font-family: 'Century Gothic', 'Segoe UI', sans-serif !important; font-size: 1.8rem; font-weight: 800 !important; color: #ffffff !important; letter-spacing: 1px; text-transform: uppercase; text-shadow: 0 0 15px rgba(255, 255, 255, 0.1); }

.nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.nav-btn { 
    background: transparent; color: #ffffff !important; border: 1px solid transparent; 
    padding: 0.5rem 1.2rem; font-size: 0.9rem; font-weight: 700; cursor: pointer; 
    transition: 0.3s; border-radius: 999px; text-decoration: none; text-transform: uppercase; 
}
.nav-btn:hover, .nav-btn.active { background: rgba(255,255,255,0.15); color: #fff !important; border-color: #fff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }

/* Hamburger Menu */
.hamburger { display: none; cursor: pointer; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; z-index: 10002; }
.bar { width: 100%; height: 3px; background-color: #fff; border-radius: 3px; transition: 0.3s; }

/* --- GLASS CONTAINER --- */
.glass-container { 
    max-width: 1100px !important; 
    width: 95%; 
    margin: 2rem auto !important; 
    padding: 2rem; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 20px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    position: relative; 
    z-index: 50; 
}

/* --- HERO --- */
.hero-section { text-align: center; padding: 3rem 1rem; position: relative; z-index: 50; }
.hero-title { font-size: 4rem; margin: 0; font-weight: 800; color: #fff; }
.hero-subtitle { color: #888; letter-spacing: 3px; font-size: 0.9rem; margin-top: 10px; }

/* --- HERO BEAT ART --- */
.hero-beat-art {
    width: 200px; height: 200px; margin: 2rem auto 0; border-radius: 15px; overflow: hidden;
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3); border: 2px solid rgba(255, 255, 255, 0.1);
    display: none; opacity: 0; transition: opacity 0.5s ease;
}
.hero-beat-art.visible { display: block; opacity: 1; animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

/* --- ACCORDIONS --- */
.info-accordions-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 60;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Century Gothic', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.accordion-btn:hover {
    background: rgba(138, 43, 226, 0.1);
    color: #8a2be2;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.accordion-item.active .accordion-content {
    max-height: 1000px; 
    padding: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.accordion-item.active .accordion-btn {
    color: #8a2be2;
    background: rgba(138, 43, 226, 0.05);
}

.accordion-item.active .accordion-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

/* --- GRIDS & SOLD OUT EFFECTS --- */
.bio-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: start; }
.bio-img { width: 100%; max-height: 500px; object-fit: cover; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); box-shadow: -10px 10px 20px rgba(138, 43, 226, 0.2); }
.bio-text { font-size: 1rem; color: #ccc; }
.bio-text strong { color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; padding: 1rem; }
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; aspect-ratio: 1/1; cursor: pointer; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; z-index: 20; }
.gallery-item:hover { transform: scale(1.02); border-color: #8a2be2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

/* SOLD OUT STYLE */
.gallery-item.sold-out img {
    filter: grayscale(100%) brightness(50%);
}
.gallery-item.sold-out::after {
    content: "SOLD OUT";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    border: 2px solid #ff4545;
    color: #ff4545;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 69, 69, 0.5);
    background: rgba(0,0,0,0.7);
    z-index: 30;
}
.gallery-item.sold-out .btn {
    pointer-events: none;
    opacity: 0.5;
    background: #444;
}

.press-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.press-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 15px; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; position: relative; z-index: 20; }
.press-image { width: 100%; height: 200px; object-fit: cover; }
.press-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column;}

/* --- PRODUCT MODAL LAYOUT --- */
.product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 0;
    height: 100%;
    width: 100%;
}

.product-gallery-section {
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.main-img-container {
    width: 100%;
    height: 300px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.main-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.prod-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 100%;
    padding: 5px;
}

.prod-thumb {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
    opacity: 0.6;
}
.prod-thumb:hover, .prod-thumb.active {
    border-color: #8a2be2;
    opacity: 1;
}
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* --- FILTERS --- */
.compact-filters-container { display: flex; justify-content: center; gap: 15px; padding: 1rem; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; position: relative; z-index: 50; }
.custom-select { position: relative; min-width: 200px; font-family: 'Century Gothic', sans-serif; }
.select-btn { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 8px; padding: 0.8rem 1rem; color: #fff; font-size: 0.9rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; text-transform: uppercase; position: relative; z-index: 100; }
.select-options { position: absolute; top: 110%; left: 0; width: 100%; background: #111; border: 1px solid #333; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); display: none; list-style: none; padding: 0; margin: 0; z-index: 999; max-height: 250px; overflow-y: auto; }
.custom-select.active .select-options { display: block; animation: fadeInDown 0.2s ease; }
.select-options li { padding: 12px 15px; cursor: pointer; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05); color: #ccc; }
.select-options li:hover { background: rgba(138, 43, 226, 0.2); color: #fff; }

/* --- BEAT/RELEASE ROWS --- */
.beat-store-container { max-width: 1000px; margin: 2rem auto; padding: 0 1rem; position: relative; z-index: 20; }

.beat-row { 
    display: grid; 
    grid-template-columns: 100px 1fr auto; 
    gap: 2rem; 
    align-items: center; 
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    padding: 1.5rem; 
    margin-bottom: 1.2rem; 
    border-radius: 16px; 
    transition: 0.3s; 
}

.beat-art { 
    width: 100px; 
    height: 100px; 
    background: #222; 
    border-radius: 12px; 
    position: relative; 
    overflow: hidden; 
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.beat-art img { width: 100%; height: 100%; object-fit: cover; }
.beat-play-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; cursor: pointer; }

.beat-info { display: flex; flex-direction: column; justify-content: center; }
.beat-info h4 { margin: 0; font-size: 1.5rem; color: #fff; font-weight: 800; letter-spacing: 0.5px; text-align: left; }
.beat-desc { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: #ccc; margin-top: 8px; line-height: 1.4; text-transform: none; text-align: left; }
.beat-meta { font-size: 0.85rem; color: #888; margin-top: 5px; font-weight: 500; text-align: left; }

.beat-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end;}

.btn, .nav-btn { 
    padding: 0.7rem 1.4rem; 
    font-size: 0.85rem; 
    border: none; cursor: pointer; 
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; 
    border-radius: 8px; 
    font-weight: 700; 
    letter-spacing: 0.5px; 
    text-transform: uppercase; 
    text-decoration: none; color: #fff; 
    font-family: 'Inter', sans-serif; 
    transition: 0.2s ease-in-out; 
    position: relative; z-index: 60; 
    white-space: nowrap; 
}

.btn-accent { background: #8a2be2; box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.btn-glow {
    background: transparent;
    border: 1px solid #8a2be2;
    color: #8a2be2 !important;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2), inset 0 0 5px rgba(138, 43, 226, 0.1);
    animation: pulseGlow 3s infinite alternate;
}
.btn-glow:hover {
    background: #8a2be2;
    color: #fff !important;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6);
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(138, 43, 226, 0.2); border-color: rgba(138, 43, 226, 0.6); }
    100% { box-shadow: 0 0 18px rgba(138, 43, 226, 0.5); border-color: #8a2be2; }
}

/* --- MODAL (SUPER ROUNDED + GLOW) --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(12px); display: none; justify-content: center; align-items: center; z-index: 99999; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.visible { display: flex !important; opacity: 1; }

.modal-box { 
    background: rgba(20, 20, 25, 0.85); 
    backdrop-filter: blur(25px); 
    border: 1px solid rgba(138, 43, 226, 0.5); 
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.2); 
    padding: 2.5rem; 
    border-radius: 50px; 
    width: 90%; 
    max-width: 550px; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
    transition: box-shadow 0.3s ease, border-color 0.3s ease; 
}

.modal-close-btn { position: absolute; top: 15px; right: 20px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 1.5rem; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; z-index: 100; }

/* --- WAVEFORM EQUALIZER --- */
.waveform-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px; 
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    z-index: 0;
    pointer-events: none;
    padding: 0 20px;
}

.waveform-bar {
    width: 8px;
    background: #8a2be2;
    border-radius: 5px 5px 0 0;
    animation: equalizer 1.2s infinite ease-in-out; 
    opacity: 0.5; 
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

@keyframes equalizer {
    0% { height: 5px; }
    50% { height: 35px; } 
    100% { height: 5px; }
}

/* --- VIBE GLASS BUTTONS --- */
.floating-vibe {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    margin: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.floating-vibe:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    box-shadow: 0 0 20px currentColor; 
    animation-play-state: paused; 
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- PLAYER & FOOTER --- */
#sticky-player { position: fixed; bottom: 40px; left: 0; width: 100%; height: 70px; background: rgba(15, 15, 15, 0.98); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid #111; display: none; justify-content: center; align-items: center; z-index: 2900; padding: 0 1rem; backdrop-filter: blur(10px); }
#sticky-player.player-visible { display: flex !important; }
.player-inner { width: 100%; max-width: 1000px; display: flex; align-items: center; gap: 15px; }
.player-controls { display: flex; align-items: center; gap: 15px; }
.play-btn-large { width: 40px; height: 40px; background: #fff; color: #000; border-radius: 50%; border: none; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.player-info-section { flex-grow: 1; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.progress-container { width: 100%; height: 6px; background: #333; border-radius: 3px; cursor: pointer; position: relative; }
.progress-bar { background: #8a2be2; height: 100%; width: 0%; border-radius: 3px; }

.site-footer { position: fixed; bottom: 0; left: 0; width: 100%; height: 40px; background: #000; border-top: 1px solid #222; z-index: 3000; display: flex; align-items: center; justify-content: center; padding: 0; }
.footer-content { width: 100%; max-width: 1200px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }
.footer-section { display: flex; align-items: center; gap: 10px; }
.footer-title { font-family: 'Century Gothic', 'Segoe UI', sans-serif; font-size: 0.7rem; font-weight: 700; color: #666; margin: 0; letter-spacing: 1px; white-space: nowrap; }
.social-icons { display: flex; align-items: center; gap: 8px; }
.social-link { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.social-link img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0) invert(1); }

/* --- 404 PAGE GLITCH EFFECT --- */
.error-icon {
    font-size: 10rem;
    color: #222;
    position: relative;
    animation: glitch 2s infinite;
}

.error-icon::before, .error-icon::after {
    content: "\f51f"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
}

.error-icon::before {
    color: #8a2be2;
    animation: glitch-top 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    transform: translate(-5px, -5px);
    z-index: -1;
    opacity: 0.7;
}

.error-icon::after {
    color: #ff4545;
    animation: glitch-bottom 3s infinite linear alternate-reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    transform: translate(5px, 5px);
    z-index: -1;
    opacity: 0.7;
}

@keyframes glitch {
    2%, 64% { transform: translate(2px, 0) skew(0deg); }
    4%, 60% { transform: translate(-2px, 0) skew(0deg); }
    62% { transform: translate(0, 0) skew(5deg); }
}

@keyframes glitch-top {
    2%, 64% { transform: translate(2px, -2px); }
    4%, 60% { transform: translate(-2px, 2px); }
    62% { transform: translate(13px, -1px) skew(-13deg); }
}

@keyframes glitch-bottom {
    2%, 64% { transform: translate(-2px, 0); }
    4%, 60% { transform: translate(-2px, 0); }
    62% { transform: translate(-22px, 5px) skew(21deg); }
}

/* --- BEAT HIGHLIGHT & COPY FEEDBACK --- */
.beat-highlight {
    animation: highlightPulse 2s ease-in-out 3;
    border-color: #8a2be2 !important;
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.4) !important;
    background: rgba(138, 43, 226, 0.1) !important;
}

@keyframes highlightPulse {
    0% { box-shadow: 0 0 10px rgba(138, 43, 226, 0.2); }
    50% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.6); border-color: #fff; }
    100% { box-shadow: 0 0 10px rgba(138, 43, 226, 0.2); }
}

.copy-feedback {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: #8a2be2;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.copy-feedback.show { opacity: 1; animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 900px) {
    .main-navigation { padding: 0.8rem 1.5rem; }
    .logo-text { font-size: 1.2rem; }
    .hamburger { display: flex; z-index: 10002; }
    .nav-links { 
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; 
        background: rgba(10, 10, 10, 0.98); backdrop-filter: blur(20px); 
        flex-direction: column; justify-content: flex-start; align-items: center; 
        gap: 1.2rem; padding-top: 6rem; padding-bottom: 2rem; overflow-y: auto; 
        transition: 0.4s ease-in-out; z-index: 10001; 
    }
    .nav-links.active { right: 0; }
    .nav-btn { font-size: 1rem; padding: 0.6rem 1.5rem; width: 70%; text-align: center; border: 1px solid rgba(255,255,255,0.1); }
    
    .hero-title { font-size: 2.2rem !important; } 
    .hero-section { padding: 1rem 1rem 0.5rem 1rem; }
    .hero-beat-art { display: none !important; }
    
    #info-accordions-container { display: none; }
    #info-modal-content { display: flex !important; flex-direction: column; gap: 10px; }
    #mobile-info-btn { display: inline-flex !important; margin-top: 10px; }
    
    /* Product Modal Stack on Mobile */
    .product-modal-content { grid-template-columns: 1fr; }
    .product-gallery-section { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; }
    .main-img-container { height: 200px; }
    .product-info-section { padding: 1.5rem; }
    
    .compact-filters-container { flex-direction: column; gap: 12px; margin-top: 0; padding-top: 0; } 
    .custom-select { width: 100%; } 
    
    .bio-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
    
    .social-icons, .footer-divider { display: none !important; }
    .footer-content { flex-direction: row; justify-content: center; gap: 15px; width: 100%; padding: 0; }
    .footer-section { width: auto; border: none !important; padding: 0; flex-direction: row; }
    .footer-title { display: block !important; font-size: 0.65rem; opacity: 0.5; margin: 0; }
    .site-footer { height: 30px; min-height: 30px; }
    #sticky-player { bottom: 30px; height: 65px; padding: 0 10px; }
    .player-controls { gap: 10px; }

    .beat-row { 
        grid-template-columns: 100px 1fr; 
        grid-template-areas: "art info" "actions actions";
        gap: 15px; padding: 1.2rem;
    }
    .beat-art { grid-area: art; width: 100px; height: 100px; }
    .beat-info { grid-area: info; padding-left: 0; }
    .beat-info h4 { font-size: 1.3rem; }
    .beat-desc { font-size: 0.85rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } 
    .beat-actions { grid-area: actions; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; margin-top: 5px; }
    .btn { width: 100%; min-width: 0; padding: 0.8rem 0.5rem; font-size: 0.8rem; }
}

/* --- NEW UI TOUCHES (Releases & Vibe Search) --- */

/* 1. VIBE SEARCH (Όπως το παλιό: Gradient & Glow) */
#vibe-search-btn {
    background: linear-gradient(90deg, #7b4ff2, #4c8bf5) !important; /* Μωβ προς Μπλε */
    border: none !important;
    border-radius: 50px !important; /* Στρογγυλεμένο */
    color: #fff !important;
    padding: 0.8rem 2.5rem !important;
    box-shadow: 0 0 20px rgba(76, 139, 245, 0.4) !important; /* Η παλιά λάμψη */
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

#vibe-search-btn:hover {
    transform: scale(1.05); /* Ελαφρύ μεγάλωμα */
    box-shadow: 0 0 35px rgba(76, 139, 245, 0.7) !important; /* Πιο έντονη λάμψη */
}
#vibe-search-btn i { color: #fff !important; }


/* 2. WHY BUY BUTTON (Διάφανο -> Μωβ στο Hover) */
#why-buy-btn {
    background: transparent !important;
    border: 1px solid #8a2be2 !important;
    color: #8a2be2 !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

#why-buy-btn:hover {
    background: #8a2be2 !important; /* Γεμίζει μωβ */
    color: #fff !important; /* Άσπρα γράμματα */
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.6) !important; /* Μωβ λάμψη */
}
#why-buy-btn i { transition: color 0.3s; }
#why-buy-btn:hover i { color: #fff !important; }


/* 3. ALL RELEASES BUTTON (Κενό -> Λευκή Λάμψη στο Hover) */
#all-releases-btn {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.3) !important; /* Πιο διακριτικό περίγραμμα αρχικά */
    color: #fff !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

/* Αφαιρούμε το μόνιμο active style αν υπάρχει */
#all-releases-btn.active {
    background: transparent !important;
    box-shadow: none !important;
    border-color: #fff !important;
}

#all-releases-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important; /* Ελαφρύ γέμισμα */
    border-color: #fff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5) !important; /* Λευκή λάμψη */
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}


/* 4. GENRE/TYPE DROPDOWNS (Χρωματιστά Hovers) */
.custom-select .select-btn:hover {
    border-color: #00d2ff !important; /* Γαλάζιο στο hover */
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
    color: #fff;
}

/* --- FREQUENCY SELECTOR (NEWSLETTER) --- */
.freq-selector {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: left;
    background: rgba(255,255,255,0.02);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ccc;
    transition: 0.3s;
}

.radio-label:hover {
    color: #fff;
}

.radio-label input {
    display: none; /* Κρύβουμε το κανονικό radio */
}

.radio-custom {
    width: 16px;
    height: 16px;
    border: 2px solid #555;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Όταν επιλεγεί */
.radio-label input:checked + .radio-custom {
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.4);
}

.radio-label input:checked + .radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #8a2be2;
    border-radius: 50%;
}
