/* Manifest Website - Main Stylesheet */

/* ========================================
   CSS Variables / Theme
   ======================================== */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    --accent: #00ff88;
    --accent-dim: #00cc6a;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --text-muted: #555555;
    --border: #222222;
}

/* ========================================
   Reset & Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    height: auto;
}

html, body {
    min-height: 0;
    display: block;
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
    outline: 2px solid var(--text-primary);
    outline-offset: 2px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Noise Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1000;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ========================================
   Header & Navigation
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 70%, transparent 100%);
    padding: 1rem 0;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    position: relative;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 45px;
    width: auto;
    margin-right: 0.75rem;
    vertical-align: middle;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--accent);
}

.nav-with-search {
    display: flex;
    align-items: center;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,255,136,0.3);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Hero Carousel
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse at 30% 20%, rgba(0,255,136,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(0,255,136,0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.carousel,
.carousel-slides {
    overflow: visible !important;
}

.carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 80px;
    position: relative;
}

.carousel-slides {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}

.carousel-inner {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.carousel-artwork {
    flex: 0 0 500px;
    position: relative;
}

.artwork-frame {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,255,136,0.1);
    animation: float 6s ease-in-out infinite;
}

.artwork-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.artwork-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.05) 50%, transparent 60%);
    animation: shine 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.carousel-info {
    flex: 1 1 0%;
    min-width: 0;
    width: 100%;
}

.carousel-info h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.carousel-info h1 a:hover {
    color: var(--accent) !important;
}

.carousel-info h2 {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.carousel-nav {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: var(--text-secondary);
}

.carousel-dot.active {
    background: var(--accent);
    width: 60px;
}

/* Carousel Arrow Navigation */
.carousel-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.carousel-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.carousel-arrow:hover svg {
    color: var(--bg-dark);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    position: relative;
    padding-left: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--accent);
}

.view-all {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-all:hover {
    gap: 1rem;
}

.view-all svg {
    width: 16px;
    height: 16px;
}

/* Home Page Sections */
#releases {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -2rem;
    padding: 2rem 2rem 0 2rem !important;
}

/* ========================================
   Music Page (Releases, Mixes, Playlists)
   ======================================== */
.music-page {
    padding-top: 120px;
}

.music-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

/* ========================================
   Page Headers (for inner pages)
   ======================================== */
.page-header {
    margin-bottom: 1rem;
}

.page-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    margin-bottom: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.back-link:hover {
    color: var(--accent);
}

.back-link svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   Releases Grid
   ======================================== */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.release-card {
    cursor: pointer;
    transition: all 0.4s ease;
    align-self: start;
    min-width: 0;
}

.release-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    height: auto;
}

.release-card:hover {
    transform: translateY(-8px);
}

.release-card:hover .release-artwork {
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0,255,136,0.15);
}

.release-artwork {
    aspect-ratio: 1 / 1;
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.release-artwork img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-artwork::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-card:hover .release-artwork::after {
    opacity: 1;
}

.release-play {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
}

.release-card:hover .release-play {
    opacity: 1;
    transform: translateY(0);
}

.release-play svg {
    width: 16px;
    height: 16px;
    color: var(--bg-dark);
    margin-left: 2px;
}

.release-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.release-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.release-artist {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.release-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   Artists Page (List View)
   ======================================== */
.artists-page {
    padding-top: 120px;
}

.artists-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.artists-list {
    display: flex;
    flex-direction: column;
}

.artist-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.artist-card:first-child {
    border-top: 1px solid var(--border);
}

.artist-card:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(0,255,136,0.05) 0%, transparent 50%);
}

.artist-card:hover h3 {
    color: var(--accent);
}

.artist-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.artist-card .arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.artist-card:hover .arrow {
    color: var(--accent);
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Artist Page
   ======================================== */
.artist-page {
    padding-top: 120px;
}

.artist-page > .back-link {
    display: block;
    max-width: 1400px;
    margin: 0 auto 1rem;
    padding: 0 2rem;
}

.artist-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.artist-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 0;
}

.artist-content h1 {
    margin-bottom: 1rem;
}

.artist-page h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    margin: 0;
}

.artist-image {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-details {
    flex: 1;
}

.artist-details .back-link {
    margin-bottom: 1rem;
}

.artist-name-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.artist-name-row h1 {
    margin-bottom: 0;
}

.artist-name-row .artist-socials {
    margin-bottom: 0;
}

.artist-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 1400px;
}

.artist-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.social-btn:hover svg {
    color: var(--bg-dark);
}

.social-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

.releases-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 3rem;
    clear: both;
}

.releases-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.releases-section:last-child {
    margin-bottom: 0;
}

/* Mixes Section */
.mixes-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.mixes-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.mixes-section:last-child {
    margin-bottom: 0;
}

.mixes-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mix-item {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.mix-item-header {
    padding: 1rem;
    font-family: 'Rajdhani', sans-serif;
    border-bottom: 1px solid var(--border);
}

.mix-item-header a {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.mix-item-header a:hover {
    color: var(--text-primary);
}

.mix-item-header span {
    color: var(--text-secondary);
}

.mix-item iframe {
    display: block;
}

/* Photo Gallery */
.photo-gallery {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-top: 2rem;
}

.photo-gallery h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.photo-gallery:last-child {
    margin-bottom: 0;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Release Page
   ======================================== */
.release-page {
    padding-top: 120px;
}

.release-page > .back-link {
    display: block;
    max-width: 1400px;
    margin: 0 auto 1rem;
    padding: 0 2rem;
}

.release-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 4rem;
    align-items: start;
}

.release-page .release-artwork {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}

.release-page .artwork-frame {
    animation: none;
}

.release-details h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 0.25rem;
}

.release-details h1 a.artist-link {
    color: var(--text-primary);
    transition: color 0.3s;
}

.release-details h1 a.artist-link:hover {
    color: var(--accent);
}

.release-details h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.release-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.meta-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.spotify-embed {
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.spotify-embed iframe {
    display: block;
}

.streaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.stream-link {
    padding: 0.6rem 1rem;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.stream-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.streaming-links:last-child {
    margin-bottom: 0;
}

/* ========================================
   Footer
   ======================================== */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    margin-right: 0.6rem;
    vertical-align: middle;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.social-link:hover svg {
    color: var(--bg-dark);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.footer-nav {
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Search Overlay
   ======================================== */
.search-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1.5rem;
}

.search-toggle:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.search-toggle:hover svg {
    color: var(--bg-dark);
}

.search-toggle svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    z-index: 200;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 2rem 2rem;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    padding-left: 3rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 4px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--accent);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-input-wrapper svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.search-close {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.search-close:hover svg {
    color: var(--bg-dark);
}

.search-close svg {
    width: 24px;
    height: 24px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.search-results {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

.search-section {
    margin-bottom: 2rem;
}

.search-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.search-result-item:hover {
    background: var(--bg-card);
}

.search-result-image {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    background: var(--bg-card);
    overflow: hidden;
    flex-shrink: 0;
}

.search-result-image.artist {
    border-radius: 50%;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.search-result-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.search-no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.mobile-menu-close:hover svg {
    color: var(--bg-dark);
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

.mobile-menu-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 10000;
    width: 100%;
    height: auto;
    position: relative;
    background: transparent;
}

.mobile-menu-nav a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem !important;
    letter-spacing: 0.1em;
    color: #ffffff !important;
    transition: color 0.3s;
    position: relative;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
    color: var(--accent) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ========================================
   Mixes Page
   ======================================== */
.mixes-page {
    padding-top: 120px;
}

.mixes-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

/* ========================================
   Playlists Page
   ======================================== */
.playlists-page {
    padding-top: 120px;
}

.playlists-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.playlist-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.playlist-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.playlist-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    padding: 1.25rem 1.5rem 1rem;
    color: var(--text-primary);
}

.playlist-card h3 a {
    color: var(--text-primary);
    transition: color 0.3s;
}

.playlist-card h3 a:hover {
    color: var(--accent);
}

.playlist-card iframe {
    display: block;
}

/* ========================================
   Agency Page
   ======================================== */
.agency-page {
    padding-top: 120px;
}

.agency-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.agency-intro {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.agency-bio-column {
    flex: 1;
}

.agency-bio {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.agency-contact-column {
    width: 350px;
    flex-shrink: 0;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    background: var(--bg-hover);
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all 0.3s;
}

.email-link:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
}

.email-link svg {
    width: 22px;
    height: 22px;
}

.agency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.agency-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.agency-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.agency-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-hover);
}

.agency-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.agency-card:hover .agency-card-image img {
    transform: scale(1.05);
}

.agency-card-info {
    padding: 1rem;
    text-align: center;
}

.agency-card-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

.agency-card:hover .agency-card-info h3 {
    color: var(--accent);
}

/* ========================================
   About Page
   ======================================== */
.about-page {
    padding-top: 120px;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.about-bio {
    max-width: 900px;
}

.about-bio p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

.about-bio strong {
    font-weight: 700;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-page {
    padding-top: 120px;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.contact-info {
    max-width: 1400px;
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-section:last-child {
    margin-bottom: 0;
}

.contact-section-text {
    flex: 1;
}

.contact-section-text h2 {
    margin-bottom: 0.5rem;
}

.contact-section-text p {
    margin: 0;
}

.contact-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

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

.demo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    transition: opacity 0.3s;
}

.demo-link:hover {
    opacity: 0.8;
}

.demo-link svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Demos Page
   ======================================== */
.demos-page {
    padding-top: 120px;
}

.demos-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.page-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
}

.demo-embed-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.demo-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 800px;
    border: none;
}

/* ========================================
   404 Error Page
   ======================================== */
.error-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 2rem;
    text-align: center;
}

.error-content {
    max-width: 600px;
}

.error-code {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12rem;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: -2rem;
}

.error-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--bg-dark);
    padding: 1rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.error-btn:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

.error-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ========================================
   Responsive Breakpoints
   ======================================== */
@media (max-width: 1200px) {
    .releases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .carousel-inner {
        flex-direction: column;
        text-align: center;
    }

    .carousel-artwork {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .carousel-info h1 {
        font-size: 3.5rem;
    }

    .carousel-nav {
        justify-content: center;
    }

    .carousel-arrows {
        display: none;
    }

    .releases-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .playlists-grid {
        grid-template-columns: 1fr;
    }

    .release-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .release-page .release-artwork {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }

    .release-details h1 {
        font-size: 3.5rem;
    }

    .release-details h2 {
        font-size: 1.8rem;
    }

    .agency-content {
        grid-template-columns: 1fr;
    }

    .agency-contact-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .logo-img {
        height: 35px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .agency-content {
        padding: 0 1rem 0;
    }

    .agency-intro {
        flex-direction: column;
        gap: 2rem;
    }

    .agency-contact-column {
        width: 100%;
    }

    .agency-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .agency-card-info {
        padding: 0.75rem;
    }

    .agency-card-info h3 {
        font-size: 1.4rem;
    }

    .agency-page .page-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .agency-bio {
        font-size: 1rem;
    }


    .about-content,
    .contact-content,
    .demos-content,
    .mixes-content,
    .playlists-content,
    .artists-content,
    .music-content {
        padding: 0 1rem 0;
    }

    .about-bio p {
        font-size: 1.05rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .email-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .demo-embed-wrapper iframe {
        height: 600px;
    }

    .page-header h1 {
        font-size: 3rem;
    }

    .about-page,
    .agency-page,
    .contact-page,
    .demos-page,
    .mixes-page,
    .playlists-page,
    .artists-page,
    .music-page {
        padding-top: 80px;
    }

    .about-page .page-header h1,
    .agency-page .page-header h1,
    .contact-page .page-header h1,
    .demos-page .page-header h1,
    .mixes-page .page-header h1,
    .playlists-page .page-header h1,
    .artists-page .page-header h1,
    .music-page .page-header h1 {
        margin-bottom: 1rem;
    }

    .carousel-info h1 {
        font-size: 2.5rem;
    }

    .carousel-info h2 {
        font-size: 1.3rem;
    }

    .carousel-dot {
        width: 25px;
        height: 3px;
    }

    .carousel-dot.active {
        width: 35px;
    }

    .carousel-nav {
        gap: 6px;
    }

    .releases-grid,
    .music-page .releases-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .release-details h1 {
        font-size: 2.5rem;
    }

    .release-meta {
        gap: 1.5rem;
    }

    .streaming-links {
        grid-template-columns: 1fr;
    }

    .error-code {
        font-size: 8rem;
    }

    .error-title {
        font-size: 2rem;
    }

    .artist-page,
    .release-page {
        padding-top: 100px;
    }

    .release-page > .back-link,
    .artist-page > .back-link {
        padding: 0 1rem;
        margin-bottom: 1rem;
    }

    .artist-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 1rem;
        gap: 2rem;
    }

    .release-hero {
        padding: 0 1rem 0;
    }

    .artist-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 400px;
        margin: 0 auto;
    }

    .artist-page h1,
    .artist-content h1 {
        font-size: 3rem;
    }

    .artist-content {
        padding: 0 1rem 0;
        text-align: left;
    }

    .artist-content .back-link {
        margin-bottom: 1rem;
        display: inline-flex;
    }

    .artist-socials {
        justify-content: center;
    }

    .artist-name-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .search-toggle {
        margin-right: 1rem;
    }

    .search-container {
        padding-top: 80px;
    }

    footer {
        padding: 2.5rem 1rem;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-logo-img {
        height: 28px;
    }

    .social-links {
        gap: 1rem;
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .footer-nav {
        display: none;
    }

    .copyright {
        padding: 1.5rem 1rem;
        font-size: 0.8rem;
    }

    footer {
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .releases-grid {
        grid-template-columns: 1fr;
    }
}
