/* --- ROOT & GLOBAL VARIABLES --- */
:root {
    --primary: #FFD700; /* Deep Gold */
    --primary-alt: #FFC107;
    --dark: #0f172a;
    --glass: rgba(255, 255, 255, 0.05);
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --radius: 16px;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
}

/* Dark Mode Preference */
@media (prefers-color-scheme: dark) {
    :root {
        --card-bg: #1e293b;
        --text-main: #f8fafc;
        --dark: #020617;
    }
    body { background-color: var(--dark); }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Outfit', sans-serif; 
    background: #f1f5f9; 
    color: var(--text-main);
    transition: background 0.3s ease;
    overflow-x: hidden; 
    width: 100%;
}
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- NEW MODERN HEADER SECTION --- */
.top-bar { background: var(--dark); color: white; padding: 8px 0; font-size: 0.8rem; border-bottom: 1px solid rgba(255,215,0,0.2); }
.ticker { display: flex; align-items: center; }
.badge { background: #ef4444; padding: 2px 8px; border-radius: 4px; margin-right: 10px; font-weight: 800; }

.glass-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    position: sticky; top: 0; z-index: 1000; padding: 12px 0;
    border-bottom: 2px solid var(--primary); transition: all 0.4s ease;
}

.glass-header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

nav.container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.brand img { height: 48px; min-width: 48px; border-radius: 8px; transition: 0.3s; border: 1px solid rgba(0,0,0,0.05); object-fit: contain; }
.brand-text { display: flex; flex-direction: column; }

.outline-style {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.55rem; font-weight: 900; letter-spacing: 1.5px;
    color: transparent; -webkit-text-stroke: 0.5px #FFD700; text-transform: uppercase;
}
.scrolled .outline-style { -webkit-text-stroke: 0.5px #fff; }

.logo-row { display: flex; align-items: baseline; gap: 4px; }
.brand-name { font-family: 'Space Grotesk', sans-serif; font-weight: 900; font-size: 1.4rem; color: #1e293b; line-height: 1; }
.scrolled .brand-name { color: #fff; }
.accent { color: #FFD700; }

.nav-menu a { text-decoration: none; color: #475569; font-weight: 600; margin-left: 20px; font-size: 0.9rem; transition: 0.3s; }
.scrolled .nav-menu a { color: #fff; }

.menu-toggle { 
    background: none; border: 1.5px solid #1e293b; 
    cursor: pointer; display: none; flex-direction: column; gap: 4.5px; 
    padding: 10px; border-radius: 8px; transition: 0.3s;
}
.scrolled .menu-toggle { border-color: var(--primary); }
.bar { width: 22px; height: 2px; background: #1e293b; border-radius: 10px; transition: 0.3s; }
.scrolled .bar { background: #FFD700; }

/* --- NEW MOBILE OVERLAY --- */
.mobile-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: #020617; z-index: 2000;
    transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.mobile-overlay.active { right: 0; }
.overlay-content { display: flex; flex-direction: column; align-items: center; width: 85%; gap: 12px; }

.mobile-link { 
    color: #fff; font-size: 1rem; font-weight: 700; text-decoration: none; 
    font-family: 'Space Grotesk', sans-serif; text-transform: uppercase;
    width: 100%; padding: 18px; border: 1px solid rgba(255, 215, 0, 0.3); 
    border-radius: 12px; text-align: center; transition: 0.3s;
    background: rgba(255, 255, 255, 0.02);
}
.mobile-link:hover { border-color: #FFD700; background: rgba(255, 215, 0, 0.1); }

.social-row { display: flex; gap: 10px; margin-top: 15px; width: 100%; justify-content: center; }
.social-box {
    width: 55px; height: 55px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 12px; color: #fff; 
    text-decoration: none; font-weight: 800; transition: 0.3s;
}
.social-box:hover { border-color: #FFD700; color: #FFD700; }

.close-menu { 
    position: absolute; top: 25px; right: 25px; 
    font-size: 2rem; color: #FFD700; background: none; 
    border: 1px solid rgba(255, 215, 0, 0.4); 
    border-radius: 12px; width: 50px; height: 50px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* --- HERO & MAIN CONTENT --- */
.hero-card {
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    border-radius: var(--radius); padding: 60px 40px; margin: 40px 0;
    color: white; position: relative; overflow: hidden;
}
.hero-card::after {
    content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px;
    background: var(--primary); filter: blur(100px); opacity: 0.15;
}

.category-tag { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; }
.hero-card h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-family: 'Space Grotesk', sans-serif; margin: 15px 0; }
.accent-text { color: var(--primary); }

.main-grid { display: grid; grid-template-columns: 1fr 350px; gap: 40px; }
.feed-section, .chat-card, .promo-box {
    background: var(--card-bg); border-radius: var(--radius);
    padding: 25px; box-shadow: var(--shadow); margin-bottom: 30px;
}

/* --- FOOTER SECTION --- */
.site-footer {
    background: var(--dark); color: #94a3b8; padding: 80px 0 0;
    margin-top: 100px; border-top: 4px solid var(--primary);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; }
.footer-brand img { height: 60px; margin-bottom: 20px; filter: brightness(1.2); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }

.footer-links h4, .footer-newsletter h4 {
    color: white; font-family: 'Space Grotesk', sans-serif; margin-bottom: 25px; font-size: 1.1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { text-decoration: none; color: inherit; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.newsletter-form { display: flex; margin-top: 15px; }
.newsletter-form input { background: #1e293b; border: 1px solid #334155; padding: 10px 15px; border-radius: 6px 0 0 6px; color: white; width: 100%; outline: none; }
.newsletter-form button { background: var(--primary); border: none; padding: 0 20px; border-radius: 0 6px 6px 0; font-weight: 700; cursor: pointer; }

.footer-bottom { background: #020617; padding: 25px 0; font-size: 0.8rem; }
.bottom-flex { display: flex; justify-content: space-between; align-items: center; }

.footer-social-wrapper { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 10px; }
.social-label {
    font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 900; letter-spacing: 4px;
    color: transparent; -webkit-text-stroke: 1px var(--primary); text-transform: uppercase; opacity: 0.7;
}
/* --- UNIVERSAL PREMIUM SOCIAL ENGINE (FOOTER & SHARE) --- */

/* Selects both .share-icon and .social-icon */
.share-icon, .social-icon {
    width: 42px; /* Professional standard size */
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8; /* Muted default for a cleaner look */
    border: 2px solid var(--primary);
    text-decoration: none;
    position: relative;
    overflow: hidden; 
    transition: 
        transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
        background 0.3s ease, 
        box-shadow 0.4s ease,
        color 0.3s ease;
}

.share-header-wrapper {
    margin-top: 30px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
}

.share-label {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dim);
    letter-spacing: 1.5px;
}

.share-social-grid {
    display: flex;
    gap: 12px;
}

/* 1. THE PHYSICS: Lift, Scale, and Tilt */
.share-icon:hover, .social-icon:hover {
    transform: translateY(-10px) scale(1.18) rotate(3deg);
    color: #fff;
    z-index: 10;
}

/* 2. THE SHIMMER: Sweeping light effect (Pseudo-element) */
.share-icon::after, .social-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.share-icon:hover::after, .social-icon:hover::after {
    left: 150%;
}

/* 3. THE BRAND GLOWS (Universal Classes) */
.wa:hover { 
    background: #25D366 !important; 
    border-color: #25D366 !important;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4), 0 0 60px rgba(37, 211, 102, 0.2); 
}

.fb:hover { 
    background: #1877F2 !important; 
    border-color: #1877F2 !important;
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4), 0 0 60px rgba(24, 119, 242, 0.2); 
}

.x:hover { 
    background: #000 !important; 
    border-color: #fff !important;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05); 
}

.ig:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) !important;
    border-color: transparent !important;
    box-shadow: 0 15px 35px rgba(204, 35, 102, 0.4);
}

/* 4. TACTILE FEEDBACK: Press down on click */
.share-icon:active, .social-icon:active {
    transform: translateY(-2px) scale(0.92);
}

/* 5. SVG SIZE CONTROL */
.share-icon svg, .social-icon svg {
    width: 22px;
    height: 22px;
    pointer-events: none; /* Helps with click detection */
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .desktop-only { display: none; }
    .menu-toggle { display: flex; }
    .main-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .bottom-flex { flex-direction: column-reverse; gap: 30px; text-align: center; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

/* Gallery Styles */
.gallery-section { margin-top: 60px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }


/* WhatsApp Slide-in Animation */
.fan-club-slide {
    position: fixed;
    bottom: -100%; /* Hidden initially */
    right: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 4px solid #25D366; /* WhatsApp Green */
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.fan-club-slide.show {
    bottom: 20px;
}

.slide-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wa-icon { font-size: 1.5rem; }
.slide-header h4 { font-family: 'Space Grotesk', sans-serif; color: var(--dark); }

.fan-club-slide p { font-size: 0.85rem; color: #64748b; margin-bottom: 15px; line-height: 1.4; }

.wa-join-btn {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.wa-join-btn:hover { background: #128C7E; transform: scale(1.02); }

.close-slide {
    position: absolute;
    top: 5px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* Hero Refinement */
.lw-about-hero {
    text-align: center;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.lead-text {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Bento Grid Logic */
.lw-about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Mission Points */
.lw-mission-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.lw-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.point-icon { font-size: 1.5rem; }

/* Stats Tiles */
.lw-stats-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lw-stat-tile {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 900;
    color: var(--primary);
}

.gold-tile {
    background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%) !important;
}
.gold-tile .stat-num, .gold-tile p { color: #000 !important; }

/* CTA Silicone Buttons */
.lw-about-cta {
    text-align: center;
    padding: 50px;
    border-top: 4px solid var(--primary);
}

.lw-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.lw-btn-gold {
    background: var(--primary);
    color: #000;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Space Grotesk';
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
    transition: 0.3s;
}

.lw-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Space Grotesk';
    transition: 0.3s;
}

.lw-btn-gold:hover { transform: translateY(-3px); background: #fff; }
.lw-btn-outline:hover { background: rgba(255, 215, 0, 0.1); }

/* Responsive Overlay */
@media (max-width: 900px) {
    .lw-about-grid { grid-template-columns: 1fr; }
    .lw-cta-group { flex-direction: column; }
}

/* --- CONTACT HUB SPECIFIC STYLES --- */

.silicone-form { display: flex; flex-direction: column; gap: 20px; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.lw-input-group { display: flex; flex-direction: column; gap: 8px; }

.lw-input-group label {
    font-size: 0.75rem; font-weight: 800; color: var(--primary);
    text-transform: uppercase; letter-spacing: 1px;
}

.lw-input-group input, 
.lw-input-group select, 
.lw-input-group textarea {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px; padding: 14px;
    font-family: 'Outfit', sans-serif; font-size: 0.95rem;
    color: var(--text-main); transition: 0.3s;
}

/* Dark Mode Input Adjustment */
@media (prefers-color-scheme: dark) {
    .lw-input-group input, .lw-input-group select, .lw-input-group textarea {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 215, 0, 0.1);
    }
}

.lw-input-group input:focus, .lw-input-group textarea:focus {
    border-color: var(--primary); outline: none;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.lw-submit-btn {
    background: var(--primary); color: #000; border: none;
    padding: 18px; border-radius: 12px; font-weight: 900;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    cursor: pointer; transition: 0.4s; font-family: 'Space Grotesk';
}
.lw-submit-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3); }

/* SIDEBAR TILES */
.silicone-tile { border: 1px solid rgba(255, 215, 0, 0.15); transition: 0.3s; }
.silicone-tile:hover { border-color: var(--primary); }

.status-indicator {
    font-size: 0.7rem; font-weight: 900; color: #25D366;
    display: flex; align-items: center; gap: 8px;
}
.pulse {
    width: 8px; height: 8px; background: #25D366;
    border-radius: 50%; display: inline-block;
    animation: glow 1.5s infinite;
}

@keyframes glow {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}

.connect-link {
    display: flex; align-items: center; gap: 15px; text-decoration: none;
    padding: 15px; border-radius: 12px; background: rgba(0,0,0,0.02);
    margin-bottom: 10px; transition: 0.3s;
}
.connect-link:hover { background: rgba(255, 215, 0, 0.05); transform: translateX(5px); }

.icon-wrap {
    width: 40px; height: 40px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; color: white;
}
.icon-wrap.wa { background: #25D366; }
.icon-wrap.mail { background: var(--primary); color: #000; }

.connect-text strong { display: block; font-size: 0.9rem; color: var(--text-main); }
.connect-text span { font-size: 0.75rem; color: #94a3b8; }

.mini-map {
    height: 120px; background: #0f172a; border-radius: 10px;
    margin-top: 15px; display: flex; align-items: center; justify-content: center;
    border: 1px solid #334155;
}
.map-overlay { color: var(--primary); font-size: 0.7rem; font-weight: 900; letter-spacing: 2px; }

@media (max-width: 600px) {
    .input-row { grid-template-columns: 1fr; }
}

/* --- MUSIC PAGE SPECIFIC STYLES --- */

/* Hero Stats */
.music-stats { display: flex; gap: 30px; margin-top: 25px; }
.stat-item { display: flex; flex-direction: column; }
.stat-item strong { color: var(--primary); font-size: 1.5rem; font-family: 'Space Grotesk'; }
.stat-item span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; }

/* Filter Bar */
.music-filter-bar { 
    display: flex; justify-content: space-between; align-items: center; 
    margin-bottom: 40px; gap: 20px; flex-wrap: wrap;
}
#musicSearch {
    flex: 1; min-width: 300px; padding: 15px 25px; border-radius: 12px;
    background: var(--card-bg); border: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-main); font-family: 'Outfit'; outline: none;
}
.filter-btn {
    padding: 10px 20px; border-radius: 8px; border: 1px solid #ddd;
    background: transparent; cursor: pointer; transition: 0.3s; font-weight: 600;
}
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: #000; }

/* Track Cards: Silicone Case Standard */
.track-card {
    background: var(--card-bg); border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
}
.track-card:hover { transform: translateY(-10px); border-color: var(--primary); }

.track-visual { position: relative; height: 260px; overflow: hidden; }
.track-visual img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.track-card:hover .track-visual img { transform: scale(1.1); }

/* Overlays & Badges */
.play-overlay {
    position: absolute; inset: 0; background: rgba(15, 23, 42, 0.4);
    display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s;
}
.track-card:hover .play-overlay { opacity: 1; }
.play-btn-circle {
    width: 60px; height: 60px; background: var(--primary); color: #000;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 0 20px var(--primary);
}

.trending-badge, .new-badge {
    position: absolute; top: 15px; left: 15px; padding: 5px 12px;
    border-radius: 6px; font-size: 0.7rem; font-weight: 900; text-transform: uppercase;
}
.trending-badge { background: #ef4444; color: white; }
.new-badge { background: var(--primary); color: black; }

/* Info Section */
.track-info { padding: 20px; }
.artist-meta h3 { font-family: 'Space Grotesk'; margin-bottom: 5px; font-size: 1.3rem; }
.artist-meta p { font-size: 0.85rem; color: #64748b; margin-bottom: 20px; }

.track-actions { display: flex; gap: 10px; }
.btn-music-view {
    flex: 1; background: var(--dark); color: white; text-align: center;
    padding: 12px; border-radius: 10px; text-decoration: none; font-weight: 700;
    font-size: 0.85rem; transition: 0.3s; border: 1px solid transparent;
}
.btn-music-view:hover { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-share-mini {
    width: 45px; background: rgba(255, 215, 0, 0.1); border: 1px solid var(--primary);
    border-radius: 10px; cursor: pointer; font-weight: bold;
}

@media (max-width: 768px) {
    .music-grid { grid-template-columns: 1fr; }
}

/* --- ARTIST PAGE SILICONE STYLES --- */
.lw-artists-wrapper { padding-top: 40px; }

/* 3D Search Bar */
.search-filter-bar {
    display: flex; gap: 10px; margin-top: 30px;
    background: rgba(255,255,255,0.05);
    padding: 8px; border-radius: 12px;
    border: 1px solid rgba(255,215,0,0.2);
}
.search-filter-bar input {
    flex: 1; background: transparent; border: none;
    color: white; padding: 12px; outline: none; font-family: 'Outfit';
}

/* Artist Grid Layout */
.artist-silicone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px; margin-top: 40px;
}

/* 3D Artist Card */
.artist-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2px; /* For the metallic border effect */
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(255,215,0,0.1);
}

.card-inner {
    background: var(--card-bg);
    border-radius: calc(var(--radius) - 2px);
    padding: 25px; height: 100%;
    display: flex; flex-direction: column; align-items: center; text-align: center;
}

.artist-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--primary);
}

/* Artist Avatar - Silicone Style */
.artist-avatar {
    width: 80px; height: 80px;
    background: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin-bottom: 15px;
    border: 3px solid var(--primary);
    box-shadow: inset 0 0 15px rgba(255,215,0,0.3);
}

.artist-name { font-family: 'Space Grotesk'; font-size: 1.4rem; color: var(--primary); margin-bottom: 5px; }
.artist-genre { font-size: 0.85rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; }

.artist-stats {
    display: flex; gap: 15px; margin: 15px 0;
    font-size: 0.75rem; color: #64748b;
}

/* Professional Action Button */
.artist-action-btn {
    width: 100%; background: var(--dark);
    color: var(--primary); text-decoration: none;
    padding: 12px; border-radius: 10px;
    font-weight: 800; border: 1.5px solid var(--primary);
    transition: 0.3s; margin-top: auto;
}
.artist-action-btn:hover { background: var(--primary); color: var(--dark); }

/* Status Pills */
.artist-status-pill {
    position: absolute; top: 15px; right: 15px;
    background: #ef4444; color: white;
    font-size: 10px; font-weight: 900;
    padding: 4px 10px; border-radius: 20px;
}
.trending .artist-status-pill { background: #FFD700; color: #000; }

/* --- SITEMAP SPECIFIC ADDITIONS --- */

.sitemap-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.sitemap-card {
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-top: 45px !important;
}

.sitemap-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-icon {
    position: absolute;
    top: -20px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.section-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.sitemap-links li {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    padding-bottom: 8px;
}

.sitemap-links a {
    display: block;
    width: 100%;
}

.active-link {
    color: var(--primary) !important;
    font-weight: 800;
}

.highlight-card {
    background: linear-gradient(145deg, var(--card-bg), rgba(255, 215, 0, 0.05)) !important;
    border: 2px dashed var(--primary) !important;
}

/* --- MUSIC UPLOAD PAGE EXCLUSIVE - 2026 --- */

.lw-page-wrapper { padding: 60px 0; background: radial-gradient(circle at top right, #1e293b, #020617); }

/* HERO STYLING */
.upload-hero { text-align: center; margin-bottom: 50px; }
.hero-badge-row { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
.silicone-badge { background: #FFD700 !important; color: #000 !important; font-weight: 900; box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
.status-pulse { color: #25D366; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; }

/* THE GLASS CARD */
.upload-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* FORM ELEMENTS */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 25px; }
.form-group label { display: block; color: #FFD700; font-size: 0.85rem; font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
.form-group input, .silicone-select {
    width: 100%; padding: 15px; background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px;
    color: white; font-family: 'Outfit'; outline: none; transition: 0.3s;
}
.form-group input:focus { border-color: #FFD700; box-shadow: 0 0 15px rgba(255, 215, 0, 0.1); }

/* UPLOAD BOX: Silicone Interaction */
.upload-box {
    border: 2px dashed rgba(255, 215, 0, 0.3); border-radius: 20px;
    padding: 40px; text-align: center; cursor: pointer; transition: 0.4s;
    background: rgba(255, 215, 0, 0.02); margin-bottom: 10px;
}
.upload-box:hover, .upload-box.dragover { border-color: #FFD700; background: rgba(255, 215, 0, 0.08); transform: scale(1.01); }

.upload-icon-3d { font-size: 3rem; margin-bottom: 15px; filter: drop-shadow(0 10px 10px rgba(0,0,0,0.5)); }

/* 3D METALLIC BUTTON */
.btn-submit-3d {
    width: 100%; padding: 20px; margin-top: 30px; border: none; border-radius: 14px;
    background: linear-gradient(145deg, #FFD700, #B8860B);
    color: #000; font-family: 'Space Grotesk'; font-weight: 900; font-size: 1.1rem;
    cursor: pointer; position: relative; overflow: hidden; transition: 0.3s;
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.4);
}
.btn-submit-3d:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(184, 134, 11, 0.6); }

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .upload-glass-card { padding: 25px; }
}

/* --- PRIVACY SPECIFIC ENHANCEMENTS --- */

.privacy-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.shield-icon {
    font-size: 8rem;
    opacity: 0.2;
    filter: drop-shadow(0 0 20px var(--primary));
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.legal-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legal-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.legal-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-card p {
    line-height: 1.7;
    font-size: 0.95rem;
    color: #94a3b8;
}

.mini-list {
    margin-top: 15px;
    list-style: none;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

/* 3D Effects */
.gold-glow {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.05);

/* --- FILE LIST & DOWNLOAD ENHANCEMENTS --- */

/* The Grid System */
.file-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Individual Music Card */
.file-card-silicone {
    background: var(--card-bg);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: var(--radius);
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: center;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.file-card-silicone:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.track-thumb {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.file-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dl-trigger-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 50px;
    margin-top: 8px;
}

/* Download Page Specifics */
.download-card-silicone {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.master-download-btn {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary) 0%, #ffc107 100%);
    color: var(--dark);
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    margin: 30px 0;
    transition: 0.3s;
}

.master-download-btn .btn-text { font-size: 1.4rem; font-weight: 900; }
.master-download-btn .btn-subtext { font-size: 0.7rem; opacity: 0.8; }
.master-download-btn:hover { transform: scale(1.03); box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4); }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.stat-item {
    background: rgba(0,0,0,0.03);
    padding: 10px;
    border-radius: 10px;
}

.stat-item span { display: block; font-size: 0.65rem; color: #64748b; text-transform: uppercase; }

body span a,._xt_ad_close {display: none!important; visibility: hidden!important; opacity: 0!important; z-index: 0!important; overflow: hidden!important; height: 0; width: 0;}<!-- Code By SMsudipBD.Com -->
