* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --accent-purple: #8B5CF6;
    --accent-cyan: #06B6D4;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-300: #9CA3AF;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gradient-primary: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    --gradient-secondary: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
    --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-logo {
    width: 80px;
    height: 80px;
    opacity: 0.8;
    animation: logo-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

.loading-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    animation: text-glow 2s ease-in-out infinite alternate;
}

.loading-progress {
    width: 200px;
    height: 2px;
    background: var(--medium-gray);
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: progress-load 3s ease-out;
    transform: translateX(-100%);
}

@keyframes logo-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes text-glow {
    0% { text-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
    100% { text-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(6, 182, 212, 0.3); }
}

@keyframes progress-load {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--medium-gray);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--gray-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 1px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--black) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.7) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 3rem;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
    animation: hero-logo-float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    animation: title-glow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-100);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    font-weight: 300;
}

@keyframes hero-logo-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes title-glow {
    0% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3)); }
    100% { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)); }
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(139, 92, 246, 0.5);
    backdrop-filter: blur(10px);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    filter: brightness(1.1);
}

.cta-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.cta-icon {
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--gray-300);
    animation: scroll-bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: 1.2rem;
    color: var(--accent-purple);
}

@keyframes scroll-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Musiker Image */
.about-image-top {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.musiker-image {
    max-width: 400px;
    height: auto;
    animation: gentle-sway 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes gentle-sway {
    0%, 100% { transform: translateX(0px) scale(1); }
    25% { transform: translateX(-5px) scale(1.02); }
    50% { transform: translateX(0px) scale(1.05); }
    75% { transform: translateX(5px) scale(1.02); }
}

/* Releases Text Block Alignment */
.releases-text {
    text-align: justify;
    line-height: 1.7;
    hyphens: auto;
}

/* Footer Emoji */
.footer-emoji {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--medium-gray);
}

.footer-sofa-plant {
    width: 120px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-sofa-plant:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.5));
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.about-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.about-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--gray-100);
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}

.about-text {
    text-align: left;
    width: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-purple);
    transition: all 0.3s ease;
}

.feature-item:nth-child(2) {
    border-left-color: var(--accent-cyan);
}

.feature-item:nth-child(3) {
    border-left-color: var(--accent-green);
}

.feature-item:nth-child(4) {
    border-left-color: #F59E0B;
}

.feature-item:hover {
    transform: translateX(10px);
    background: rgba(139, 92, 246, 0.08);
    box-shadow: var(--shadow-soft);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.feature-text h4 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
}

.feature-text p {
    color: var(--gray-300);
    line-height: 1.6;
    text-align: left;
}

.feature-item {
    text-align: left;
}

.stats-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    width: 100%;
    max-width: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
}

.stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.15));
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4), 0 0 30px rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label {
    color: var(--white);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.duo-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 400px;
}

.duo-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.duo-image-container:hover .duo-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.duo-image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.overlay-content p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

/* Videos Section */
.videos-section {
    background: var(--black) url('avwp.png') center center/cover no-repeat;
    background-attachment: fixed;
    padding: 8rem 0;
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.video-card {
    background: var(--medium-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(139, 92, 246, 0.3);
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.play-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.5);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.8), rgba(6, 182, 212, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-overlay h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.video-overlay p {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.9;
}

.video-info {
    padding: 1.5rem;
}

.video-info h5 {
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.video-info p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-note {
    text-align: left;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 2rem;
}

.video-example-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.s19-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
    margin-top: -9px;
}

.example-text h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 4px;
}

.example-text {
    
}

.example-text p {
    color: var(--gray-300);
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
}

.video-note p {
    color: var(--gray-300);
    font-style: normal;
    margin-bottom: 1.5rem;
    text-align: left;
}

.video-instructions {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-purple);
}

.video-instructions h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.video-instructions ol {
    color: var(--gray-300);
    padding-left: 1.5rem;
}

.video-instructions li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.video-instructions code {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
    word-break: break-all;
    display: inline-block;
    margin-top: 0.5rem;
}

.video-note {
    text-align: left;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 2rem;
    border-left: 4px solid var(--accent-purple);
}

.embedded-video {
    position: relative;
    margin: 1rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}


.embedded-video iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.experience-text h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.experience-text p {
    font-size: 1.1rem;
    color: var(--gray-100);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.music-qualities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-purple);
    transition: all 0.3s ease;
}

.quality-item:nth-child(even) {
    border-left-color: var(--accent-cyan);
}

.quality-item:hover {
    background: rgba(139, 92, 246, 0.08);
    transform: translateX(5px);
}

.quality-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.quality-text {
    color: var(--white);
    font-weight: 500;
}

.experience-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    height: fit-content;
    align-self: center;
}

.experience-cta h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.experience-cta p {
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.website-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
    color: var(--white);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-width: 200px;
}

.website-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.website-btn:hover::before {
    left: 100%;
}

.website-btn:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(6, 182, 212, 0.15));
    border-color: var(--accent-purple);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4), 0 0 30px rgba(139, 92, 246, 0.3);
}

/* Stage Section */
.stage-section {
    background: var(--black) center/cover no-repeat;
    position: relative;
}

.stage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
}

.rider-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.rider-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rider-intro h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.rider-intro p {
    font-size: 1.2rem;
    color: var(--gray-100);
    line-height: 1.8;
}

.rider-specs {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.spec-card {
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.spec-card.highlight {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-glow);
}

.spec-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
}

.spec-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.spec-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    color: var(--gray-300);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.spec-card li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: var(--accent-purple);
    font-size: 0.8rem;
}

.spec-card.highlight li {
    color: var(--white);
    font-weight: 500;
}

/* Booking Section */
.booking-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.booking-info h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.booking-text {
    margin-bottom: 3rem;
}

.booking-text p {
    font-size: 1.2rem;
    color: var(--gray-100);
    line-height: 1.8;
}

.event-types h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.event-tag {
    padding: 0.8rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-tag:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.2);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card, .contact-card-clickable {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover, .contact-card-clickable:hover {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateX(5px);
}

.contact-card-clickable {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-card-clickable span {
    color: var(--accent-cyan);
}

.contact-icon {
    font-size: 1.8rem;
    min-width: 40px;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.contact-content h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-content a, .contact-content span {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: var(--accent-purple);
}

.booking-form {
    background: rgba(0, 0, 0, 0.5);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.booking-form h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

.form-section {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.booking-form input, .booking-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.booking-form input:focus, .booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.booking-form input::placeholder, .booking-form textarea::placeholder {
    color: var(--gray-500);
}

.form-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-glow);
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
    filter: brightness(1.1);
}

.submit-icon {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--black);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('footer.png') center center/cover no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--medium-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
}

.footer-text h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-text p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section li {
    font-size: 0.9rem;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-purple);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 250px;
        justify-content: center;
    }
    
    .about-grid,
    .experience-content,
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-card {
        width: 100%;
        max-width: 100%;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content,
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .music-qualities {
        grid-template-columns: 1fr;
    }
    
    .event-tags {
        justify-content: center;
    }
    
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}