:root {
    --bg-dark: #050505;
    --bg-card: rgba(15, 15, 15, 0.8);
    --accent-magenta: #ff0050;
    --accent-cyan: #00f2ff;
    --accent-orange: #ff6a00;
    --accent-gold: #ffb400;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glow-magenta: 0 0 15px rgba(255, 0, 80, 0.6);
    --glow-cyan: 0 0 15px rgba(0, 242, 255, 0.6);
    --glow-orange: 0 0 15px rgba(255, 106, 0, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Cinzel', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('assets/starry-bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-magenta);
    border-radius: 10px;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0; /* Reduced from 8rem */
    position: relative;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.epic-text {
    font-family: var(--font-heading);
}

.glow-magenta {
    color: var(--accent-magenta);
    text-shadow: var(--glow-magenta);
}

.glow-cyan {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.glow-orange {
    color: var(--accent-orange);
    text-shadow: var(--glow-orange);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(5, 5, 5, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 55px;
    filter: drop-shadow(var(--glow-magenta));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    text-shadow: var(--glow-cyan);
}

/* --- Hero Section Premium (CSS 3D CD Layout) --- */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: #000;
    overflow: hidden;
    padding-top: 80px;
}

.hero-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 50%, rgba(255, 106, 0, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 75% 30%, rgba(255, 60, 0, 0.15) 0%, transparent 50%),
        #050505;
    z-index: 0;
}

.hero-container-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* --- 3D CD Scene --- */
.hero-visual-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    width: 450px;
    flex-shrink: 0;
}

.cd-scene {
    position: relative;
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    transform: rotateY(25deg) rotateX(10deg);
    animation: cd-float-3d 6s infinite ease-in-out;
}

@keyframes cd-float-3d {
    0%, 100% { transform: translateY(0) rotateY(25deg) rotateX(10deg); }
    50% { transform: translateY(-15px) rotateY(28deg) rotateX(12deg); }
}

.cd-case {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    box-shadow: 
        inset 0 0 0 1px rgba(255,255,255,0.1),
        inset 2px 2px 5px rgba(255,255,255,0.2),
        inset -2px -2px 10px rgba(0,0,0,0.5),
        20px 20px 40px rgba(0,0,0,0.8);
    transform-style: preserve-3d;
    backdrop-filter: blur(5px);
}

.cd-cover-art {
    position: absolute;
    top: 5px;
    left: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: cover;
    border-radius: 2px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.8);
    display: block;
}

.cd-glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.1) 100%);
    pointer-events: none;
    border-radius: 4px;
    z-index: 10;
}

.cd-spine {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(10,10,10,0.9));
    transform-origin: left;
    transform: rotateY(-90deg);
    border-radius: 2px 0 0 2px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.cd-ground-shadow {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) rotateX(80deg);
    width: 110%;
    height: 100px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 70%);
    filter: blur(15px);
    z-index: -1;
}

/* --- Premium Content --- */
.hero-content-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 2rem;
}

.premium-badge {
    background: rgba(255, 106, 0, 0.2);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
    animation: premium-badge-pulse 2s infinite ease-in-out;
    display: inline-block;
}

@keyframes premium-badge-pulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 106, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 106, 0, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(255, 106, 0, 0.4); }
}

.hero-title-premium {
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Black Ops One', cursive;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #ffffff 40%, #ff6a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    filter: drop-shadow(0 0 10px rgba(255, 106, 0, 0.3));
}

.hero-text-premium {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.hero-actions-premium {
    display: flex;
    align-items: center;
}

.btn.btn-premium {
    box-shadow: 0 5px 30px rgba(255, 78, 0, 0.5) !important;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ff4e00, #ff8c00) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Specific Hero Outline Button */
.hero-actions-premium .btn-outline {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.hero-actions-premium .btn-outline:hover {
    background: var(--accent-orange);
    color: var(--bg-dark);
    box-shadow: var(--glow-orange);
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: premium-shine 5s infinite;
}

@keyframes premium-shine {
    0%, 70% { left: -100%; }
    100% { left: 100%; }
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .hero-container-premium {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
        padding-top: 4rem;
    }
    .hero-visual-3d {
        width: 100%;
        max-width: 350px;
    }
    .cd-scene {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
    }
    .hero-content-premium {
        align-items: center;
        padding-right: 0;
    }
    .hero-text-premium {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-magenta);
    color: white;
    box-shadow: var(--glow-magenta);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.8);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.btn-outline:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

/* --- Sections --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.section-title span {
    display: block;
    font-size: 1rem;
    color: var(--accent-cyan);
    letter-spacing: 5px;
    margin-bottom: 0.5rem;
}

/* --- Manifesto --- */
.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Reduced from 4rem */
    align-items: center;
}

.manifesto-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.manifesto-visual {
    position: relative;
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
    background: var(--bg-card);
}

.manifesto-visual img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(0.5) contrast(1.2);
}

/* --- Discography (Grid) --- */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem; /* Reduced from 2rem */
}

.album-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    border-color: var(--accent-magenta);
    transform: translateY(-10px);
}

.album-art {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-art img {
    transform: scale(1.1);
}

.album-info {
    padding: 1.5rem;
}

.album-tag {
    font-size: 0.7rem;
    color: var(--accent-magenta);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
    .nav-links {
        display: none; /* Mobile menu needed */
    }
}

/* --- YouTube Section --- */
.youtube-section {
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 255, 0.05), transparent);
}

.youtube-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8; /* Slightly more visible */
    transition: transform 0.8s ease, filter 0.3s ease;
    pointer-events: none;
}

.youtube-container:hover .video-preview-img {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.video-play-overlay {
    position: relative;
    z-index: 2;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    transition: background 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(0,0,0,0.4);
}

.video-play-overlay i {
    font-size: 6rem;
    color: var(--accent-magenta);
    text-shadow: var(--glow-magenta);
    transition: transform 0.3s ease, color 0.3s ease;
}

.video-play-overlay:hover i {
    transform: scale(1.2);
    color: var(--accent-cyan);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border: none;
}

/* --- Audio Player UI --- */
.audio-player-ui {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid var(--accent-magenta);
    backdrop-filter: blur(12px);
    border-radius: 40px;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--glow-magenta);
}

.audio-player-ui:hover {
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.8);
    background: rgba(15, 15, 15, 0.95);
}

.audio-player-ui i {
    font-size: 2.2rem;
    color: var(--accent-magenta);
    cursor: pointer;
    transition: transform 0.2s ease, color 0.3s;
}

.audio-player-ui i:hover {
    transform: scale(1.15);
    color: var(--accent-cyan);
}

.audio-player-ui span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-primary);
    text-transform: uppercase;
    font-family: var(--font-heading);
    padding-right: 5px;
}
