/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #64ffda;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    z-index: 1;
}

.subtitle {
    font-size: 1.5rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Music Section */
.music-section {
    background-color: #0f0f0f;
}

.featured-track {
    margin-bottom: 4rem;
}

.track-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.track-card.featured {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.track-card.featured .track-cover {
    max-width: 300px;
    flex-shrink: 0;
}

.track-cover {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.track-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-cover:hover .play-overlay {
    opacity: 1;
}

.play-overlay i {
    font-size: 2rem;
    color: #ffffff;
}

.track-info {
    flex: 1;
}

.track-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.prerelease-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    border-left: 4px solid #64ffda;
}

.radio-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.radio-link i {
    color: #64ffda;
    font-size: 1.2rem;
}

.coming-soon {
    color: #64ffda;
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
}

.stream-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.05);
    color: #888;
}

.stream-link.disabled:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: none;
}

.stream-link.radio {
    background: rgba(100, 255, 218, 0.2);
    color: #64ffda;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.stream-link.radio:hover {
    background: rgba(100, 255, 218, 0.3);
    color: #ffffff;
}

.audio-player {
    margin: 1rem 0;
}

.audio-player audio {
    width: 100%;
    height: 40px;
}

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

.stream-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.stream-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.stream-link.spotify:hover {
    background: #1db954;
}

.stream-link.apple:hover {
    background: #fa2d48;
}

.stream-link.youtube:hover {
    background: #ff0000;
}

.tracks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Profile Section */
.profile-section {
    background-color: #0a0a0a;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Studio Section */
.studio-section {
    background-color: #0f0f0f;
}

.studio-info {
    max-width: 800px;
    margin: 0 auto;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
}

.service i {
    font-size: 3rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.service h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.service p {
    color: #b0b0b0;
}

/* Contact Section */
.contact-section {
    background-color: #0a0a0a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-image img {
    width: 100%;
    border-radius: 12px;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #64ffda;
    font-size: 1.2rem;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #64ffda;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #64ffda;
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 2rem 0;
    text-align: center;
    color: #b0b0b0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .track-card.featured {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .tracks-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .track-card {
        padding: 1.5rem;
    }

    .streaming-links {
        flex-direction: column;
    }

    .stream-link {
        justify-content: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #64ffda;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4cd6b3;
}