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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #000000;
    overflow-x: hidden;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.001);
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    padding: 0.8rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

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

.nav-logo h2 {
    color: #ffffff;
    font-weight: 300;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: #e0e0e0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 20, 20, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), url('composer_hero.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding-top: 0;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(65%);
    pointer-events: none;
}

.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;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
}

.hero-text {
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Georgia', serif;
}

.hero-text p {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gentleFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Enhanced section animations */
.hero {
    animation: gentleFadeIn 1.5s ease-out;
}

.hero-text h1 {
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.hero-text p {
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

/* Enhanced about section animations */
.about {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about-text p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about.fade-in .about-text p {
    opacity: 1;
    transform: translateY(0);
}

.about.fade-in .about-text p:nth-child(1) { 
    transition-delay: 0.2s; 
}

.about.fade-in .about-text p:nth-child(2) { 
    transition-delay: 0.4s; 
}

/* Enhanced stat items animations */
.stat-item {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about.fade-in .stat-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about.fade-in .stat-item:nth-child(1) { 
    transition-delay: 0.3s; 
}

.about.fade-in .stat-item:nth-child(2) { 
    transition-delay: 0.5s; 
}

.about.fade-in .stat-item:nth-child(3) { 
    transition-delay: 0.7s; 
}

/* Enhanced artist cards animations */
.artist-demo-card {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.artist-demo-card.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced portfolio animations */
.portfolio-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Enhanced contact animations */
.contact-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth hover effects */
.artist-demo-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover {
    transform: translateY(-3px) scale(1.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced button animations */
.play-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.play-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Enhanced track item animations */
.track-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.track-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.track-item.active {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Enhanced navbar animations */
.navbar {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Enhanced form animations */
.form-group input,
.form-group textarea {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form-group input:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Enhanced social links animations */
.social-links a {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}


/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #ffffff;
    position: relative;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: #ffffff;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.about::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="subtle-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="0.5" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.3" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="50" r="0.3" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-pattern)"/></svg>');
    pointer-events: none;
}

.about.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.about.fade-in .about-text p {
    opacity: 1;
    transform: translateY(0);
}

.about.fade-in .about-text p:nth-child(1) { transition-delay: 0.2s; }
.about.fade-in .about-text p:nth-child(2) { transition-delay: 0.4s; }
.about.fade-in .about-text p:nth-child(3) { transition-delay: 0.6s; }

.about-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.about.fade-in .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.about.fade-in .stat-item:nth-child(1) { transition-delay: 0.3s; }
.about.fade-in .stat-item:nth-child(2) { transition-delay: 0.5s; }
.about.fade-in .stat-item:nth-child(3) { transition-delay: 0.7s; }
.about.fade-in .stat-item:nth-child(4) { transition-delay: 0.9s; }

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.stat-item p {
    color: #e0e0e0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Artist Section */
.artist {
    background-image: url('icon.png');
    background-repeat: repeat;
    background-size: 400px 400px;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.artist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
    pointer-events: none;
}

.individual-player {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.current-track-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 300;
}

.current-track-info p {
    color: #e0e0e0;
    font-weight: 300;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.play-btn:hover:not(:disabled) {
    background: #ffffff;
    color: #000000;
}

.play-btn:disabled {
    background: #333;
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #333;
}

.play-btn.playing {
    background: #ffffff;
    color: #000000;
}

.track-time-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.track-time-info span {
    font-size: 0.8rem;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    font-weight: 300;
}

.waveform-container {
    height: 80px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    min-height: 80px;
    overflow: hidden;
    box-sizing: border-box;
}

.waveform-container::before {
    content: var(--placeholder, 'Click a track to load waveform');
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-align: center;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.waveform-container canvas {
    position: relative;
    z-index: 2;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

/* Ensure WaveSurfer renders properly */
.waveform-container > div {
    width: 100% !important;
    height: 100% !important;
}

.waveform-container svg {
    width: 100% !important;
    height: 100% !important;
}

.progress-container {
    margin: 1rem 0;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 0;
    width: 0%;
    transition: width 0.1s ease;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.volume-control i {
    color: #e0e0e0;
    font-size: 1.1rem;
}

.volume-slider {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid #ffffff;
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid #ffffff;
}

/* Artist Demos Grid */
.artist-demos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.artist-demo-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.artist-demo-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.artist-profile {
    text-align: center;
    margin-bottom: 2rem;
}

.artist-img {
    width: 120px;
    height: 120px;
    border-radius: 0;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.artist-img:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.artist-name {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.demo-tracks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.track-item:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.track-item.active {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.track-number {
    color: #e0e0e0;
    font-weight: 300;
    font-size: 0.9rem;
    min-width: 30px;
}

.track-title {
    flex: 1;
    color: #e0e0e0;
    font-weight: 300;
}

.track-duration {
    color: #e0e0e0;
    font-size: 0.8rem;
    font-weight: 300;
}

.privacy-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-link a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-weight: 300;
}

.privacy-link a:hover {
    color: #ffffff;
}

/* Portfolio Section */
.portfolio {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 50%, #1a1a1a 100%);
    position: relative;
}

.portfolio::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="portfolio-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="0.4" fill="%23ffffff" opacity="0.025"/><circle cx="85" cy="85" r="0.4" fill="%23ffffff" opacity="0.025"/><circle cx="35" cy="65" r="0.3" fill="%23ffffff" opacity="0.02"/><circle cx="65" cy="35" r="0.3" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23portfolio-pattern)"/></svg>');
    pointer-events: none;
}

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

.portfolio-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.portfolio-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

.portfolio-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-content p {
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 300;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
}

.contact::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="contact-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.6" fill="%23ffffff" opacity="0.035"/><circle cx="80" cy="80" r="0.6" fill="%23ffffff" opacity="0.035"/><circle cx="50" cy="50" r="0.4" fill="%23ffffff" opacity="0.025"/><circle cx="10" cy="70" r="0.3" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="30" r="0.3" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    pointer-events: none;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    backdrop-filter: blur(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #e0e0e0;
    width: 40px;
    text-align: center;
}

.contact-item h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    color: #e0e0e0;
    font-weight: 300;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
    font-weight: 300;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 50%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::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="footer-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="70" cy="70" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="60" r="0.3" fill="%23ffffff" opacity="0.015"/><circle cx="90" cy="40" r="0.3" fill="%23ffffff" opacity="0.015"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    pointer-events: none;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        width: 100%;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .artist-profile {
        margin-bottom: 1.5rem;
    }

    .artist-stats {
        grid-template-columns: 1fr;
    }

    .music-item {
        flex-direction: column;
        text-align: center;
    }

    .individual-player {
        padding: 1rem;
    }

    .player-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .player-controls {
        justify-content: center;
    }

    .volume-control {
        justify-content: center;
    }

    .artist-demos-grid {
        grid-template-columns: 1fr;
    }

    .artist-demo-card {
        padding: 1.5rem;
    }

    .track-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .track-title {
        text-align: center;
    }

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

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

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}
