/* --- Pitch Black Minimal Variables --- */
:root {
    --bg-main: #050505;          /* Pure, deep black */
    --surface-card: #0a0a0c;     /* Barely-there slate for depth */
    --border-color: #1f1f22;     /* Ultra-subtle grey borders */
    --text-main: #ffffff;        /* Pure White */
    --text-muted: #888890;       /* Cool muted grey */
    --accent: #00e5ff;           /* Icy Cyber Cyan */
    --font-main: 'Outfit', sans-serif;
}

/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* --- Pure Code Premium Background --- */
body {
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(0, 229, 255, 0.03), transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.02), transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden;
}

/* Custom Minimal Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* --- Navigation --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 35px; width: auto; max-width: 300px; }

.nav-links { list-style: none; display: flex; gap: 40px; }
.nav-links a { 
    color: var(--text-muted); 
    text-decoration: none; 
    font-weight: 500; 
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease; 
}
.nav-links a:hover { color: var(--text-main); }

/* --- Hero Section (Premium Studio Upgrade with Animation) --- */
header.hero { 
    text-align: center; 
    height: 100vh; 
    display: flex; 
    justify-content: center; 
    align-items: center;
    position: relative;
    background: transparent;
    overflow: hidden; 
}

/* 1. Breathing Studio Glow */
header.hero::after {
    content: "";
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, rgba(5,5,5,0) 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* 2. Refined Procedural Tech Grid */
header.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
}

/* Smooth Entrance Animation */
.hero-content { 
    position: relative; 
    z-index: 2; 
    animation: fadeUp 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* 3. Metallic Shimmer Typography */
.hero h1 { 
    font-size: 6.5rem; 
    font-weight: 800;
    letter-spacing: 16px;
    margin-bottom: 5px; 
    text-transform: uppercase;
    background: linear-gradient(to right, #52525b 0%, #ffffff 50%, #52525b 100%);
    background-size: 200% auto;
    color: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to { background-position: 200% center; }
}

.hero p { 
    font-size: 1.1rem; 
    color: var(--text-muted); 
    letter-spacing: 8px; 
    text-transform: uppercase;
    font-weight: 400;
}

/* --- 4. Animated Soundwave Visualizer --- */
.soundwave {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 35px;
    margin-bottom: 40px; 
}

.soundwave .bar {
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    animation: eqPulse 1.2s ease-in-out infinite;
    transform-origin: bottom;
    opacity: 0.8;
}

.soundwave .bar:nth-child(1) { animation-delay: 0.0s; animation-duration: 1.1s; }
.soundwave .bar:nth-child(2) { animation-delay: 0.3s; animation-duration: 1.3s; }
.soundwave .bar:nth-child(3) { animation-delay: 0.1s; animation-duration: 0.9s; }
.soundwave .bar:nth-child(4) { animation-delay: 0.5s; animation-duration: 1.4s; }
.soundwave .bar:nth-child(5) { animation-delay: 0.2s; animation-duration: 1.2s; }
.soundwave .bar:nth-child(6) { animation-delay: 0.6s; animation-duration: 1.0s; }
.soundwave .bar:nth-child(7) { animation-delay: 0.1s; animation-duration: 1.5s; }
.soundwave .bar:nth-child(8) { animation-delay: 0.4s; animation-duration: 1.1s; }
.soundwave .bar:nth-child(9) { animation-delay: 0.2s; animation-duration: 1.3s; }

@keyframes eqPulse {
    0%, 100% { transform: scaleY(0.2); }
    50% { transform: scaleY(1); }
}

/* --- Sharp, Flat Buttons --- */
.btn {
    padding: 14px 32px; 
    text-decoration: none; 
    font-weight: 600; 
    border-radius: 4px; 
    transition: all 0.3s ease; 
    display: inline-block; 
    margin: 5px; 
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.primary-btn { 
    background: var(--text-main); 
    color: var(--bg-main); 
    border: 1px solid var(--text-main);
}
.primary-btn:hover { 
    background: var(--accent); 
    border-color: var(--accent);
    color: var(--bg-main); 
}

.secondary-btn { 
    background: transparent; 
    color: var(--text-main); 
    border: 1px solid #333; 
}
.secondary-btn:hover { 
    border-color: var(--text-main); 
}

/* --- Content Sections & Minimalist Cards --- */
.content-section { padding: 120px 20px; text-align: center; }
.content-section h2 { 
    font-size: 2rem; 
    font-weight: 700;
    margin-bottom: 60px; 
    letter-spacing: 2px;
    text-transform: uppercase;
}

.grid-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.card { 
    background: var(--surface-card); 
    padding: 40px; 
    border-radius: 8px; 
    border: 1px solid var(--border-color); 
    transition: transform 0.3s ease, border-color 0.3s ease; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
}
.card:hover { 
    transform: translateY(-5px); 
    border-color: #333; 
}
.card h3 { 
    font-size: 1.4rem;
    margin-bottom: 15px; 
    font-weight: 600;
    letter-spacing: 1px;
}
.card p { color: var(--text-muted); font-weight: 300; }

/* --- Specifics: Biography --- */
.about-intro { max-width: 700px; margin: 0 auto 60px; font-size: 1.2rem; color: var(--text-muted); font-weight: 300;}
.about-card { text-align: left; }
.about-card h3 { color: var(--text-main); border-bottom: 1px solid var(--border-color); padding-bottom: 15px; margin-bottom: 20px;}
.about-card p { margin-bottom: 15px; }

/* --- Specifics: Discography Visual Album Grid --- */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.album-card {
    text-align: left;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}
.album-card:hover { transform: none; border: none; }

.album-card h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin: 15px 0 5px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    padding: 0;
}

.album-card p { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

.album-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; 
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.album-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5, 5, 5, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}

.album-artwork:hover img { transform: scale(1.05); }
.album-artwork:hover .album-overlay { opacity: 1; }
.album-overlay .btn { margin: 0; transform: translateY(20px); transition: transform 0.3s ease; }
.album-artwork:hover .album-overlay .btn { transform: translateY(0); }

/* --- Specifics: Network & Platform Links --- */
.platform-groups { text-align: left; margin-top: 30px; }
.link-group { margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color); }
.link-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.link-group h4 { font-size: 1rem; color: var(--text-main); margin-bottom: 15px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }

.links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 15px; }
.platform-btn { background: rgba(255, 255, 255, 0.02); color: var(--text-muted); border: 1px solid var(--border-color); margin: 0; width: 100%; text-align: center; }

/* Brand Hovers */
.brand-spotify:hover { border-color: #1DB954; color: #1DB954; background: rgba(29, 185, 84, 0.1); box-shadow: 0 0 15px rgba(29, 185, 84, 0.2); }
.brand-apple:hover { border-color: #FA243C; color: #FA243C; background: rgba(250, 36, 60, 0.1); box-shadow: 0 0 15px rgba(250, 36, 60, 0.2); }
.brand-ytmusic:hover { border-color: #FF0000; color: #FF0000; background: rgba(255, 0, 0, 0.1); box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
.brand-amazon:hover { border-color: #FF9900; color: #FF9900; background: rgba(255, 153, 0, 0.1); box-shadow: 0 0 15px rgba(255, 153, 0, 0.2); }
.brand-tidal:hover { border-color: #ffffff; color: #000000; background: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
.brand-deezer:hover { border-color: #EF5466; color: #EF5466; background: rgba(239, 84, 102, 0.1); box-shadow: 0 0 15px rgba(239, 84, 102, 0.2); }
.brand-youtube:hover { border-color: #FF0000; color: #FF0000; background: rgba(255, 0, 0, 0.1); box-shadow: 0 0 15px rgba(255, 0, 0, 0.2); }
.brand-x:hover { border-color: #ffffff; color: #ffffff; background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 15px rgba(255, 255, 255, 0.2); }
.brand-instagram:hover { border-color: #E1306C; color: #E1306C; background: rgba(225, 48, 108, 0.1); box-shadow: 0 0 15px rgba(225, 48, 108, 0.2); }
.brand-tiktok:hover { border-color: #00f2fe; color: #00f2fe; background: rgba(0, 242, 254, 0.1); box-shadow: 0 0 15px rgba(0, 242, 254, 0.2); }
.brand-facebook:hover { border-color: #1877F2; color: #1877F2; background: rgba(24, 119, 242, 0.1); box-shadow: 0 0 15px rgba(24, 119, 242, 0.2); }
.brand-steam:hover { border-color: #66c0f4; color: #66c0f4; background: rgba(102, 192, 244, 0.1); box-shadow: 0 0 15px rgba(102, 192, 244, 0.2); }
.brand-xbox:hover { border-color: #107C10; color: #107C10; background: rgba(16, 124, 16, 0.1); box-shadow: 0 0 15px rgba(16, 124, 16, 0.2); }

.email-btn { display: block; width: 100%; }

/* --- Specifics: Embedded Media --- */
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; border: 1px solid var(--border-color); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* --- Footer --- */
footer { text-align: center; padding: 80px 20px 40px; border-top: 1px solid var(--border-color); }
.dubby-banner { background: var(--surface-card); padding: 40px; border-radius: 8px; max-width: 600px; margin: 0 auto 60px; border: 1px solid var(--border-color); }
.dubby-banner p { margin-top: 10px; color: var(--text-muted); }
.copyright { color: #444; font-size: 0.85rem; font-weight: 300; letter-spacing: 1px;}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    nav { padding: 15px 20px; justify-content: center; }
    .nav-links { display: none; }
    /* Mobile adjustments for the new hero size */
    .hero h1 { font-size: 4rem; letter-spacing: 8px; }
    .hero p { font-size: 0.9rem; letter-spacing: 4px; }
    .content-section { padding: 80px 20px; }
}
