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

:root {
    --primary-color: #ff5500;
    --secondary-color: #e64800;
    --dark-bg: #0a0a0a;
    --dark-surface: #1a1a1a;
    --dark-border: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-1: #ff5500;
    --gradient-2: #ff8800;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
}

/* Animated gradient background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-surface) 50%, var(--dark-bg) 100%);
    z-index: -2;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--gradient-1) 0%, transparent 70%);
    opacity: 0.1;
    animation: gradientFloat 20s ease-in-out infinite;
}

@keyframes gradientFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: -1px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    align-items: center;
}

.hero-text {
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-subtitle {
    display: block;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 400;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(255, 85, 0, 0.3);
}

.cta-button.primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 85, 0, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--dark-border);
}

.cta-button.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.sound-wave {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100px;
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, var(--primary-color), var(--gradient-2));
    border-radius: 2px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; height: 40px; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 60px; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 80px; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 100px; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; height: 80px; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; height: 60px; }
.wave-bar:nth-child(7) { animation-delay: 0.6s; height: 40px; }
.wave-bar:nth-child(8) { animation-delay: 0.7s; height: 20px; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease 1s forwards, bounce 2s ease-in-out infinite 2s;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); }
    50% { transform: translateX(-50%) translateY(10px) rotate(45deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Media Section */
.media {
    padding: 6rem 0;
    background: var(--dark-surface);
    position: relative;
}

.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.media-item {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.media-item:nth-child(1) {
    animation-delay: 0.3s;
}

.media-item:nth-child(2) {
    animation-delay: 0.5s;
}

.media-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.soundcloud-container,
.youtube-container {
    max-width: 100%;
}

.soundcloud-widget,
.youtube-widget {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: var(--dark-bg);
    height: 450px;
    position: relative;
}

.youtube-preview {
    width: 100%;
    height: 450px;
    position: relative;
    cursor: pointer;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-preview:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 85, 0, 0.2);
}

.youtube-preview:hover .youtube-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    border-radius: 16px;
}

.youtube-play-button {
    margin-bottom: 20px;
    background: rgba(255, 85, 0, 0.9);
    border-radius: 50%;
    padding: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.youtube-play-button:hover {
    transform: scale(1.1);
    background: var(--primary-color);
}

.youtube-text {
    text-align: center;
    color: white;
}

.youtube-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.youtube-text p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.soundcloud-widget iframe,
.youtube-widget iframe {
    border-radius: 16px;
    width: 100%;
}

/* About Section */
.about {
    padding: 6rem 0;
}

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

.about-text {
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

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

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-surface);
    border-radius: 16px;
    border: 1px solid var(--dark-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--dark-surface);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 2rem;
    border-radius: 16px;
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.youtube .social-icon {
    background: #ff0000;
    color: white;
}

.social-link.twitch .social-icon {
    background: #9146ff;
    color: white;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--dark-bg);
    border-top: 1px solid var(--dark-border);
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .sound-wave {
        gap: 4px;
        height: 60px;
    }
    
    .wave-bar {
        width: 3px;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-link {
        min-width: 200px;
        padding: 1.5rem;
    }
    
    .youtube-preview {
        height: 250px;
    }
    
    .soundcloud-widget iframe,
    .youtube-widget {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        gap: 0.25rem;
        font-size: 0.75rem;
    }
    
    .hero {
        padding: 4rem 1rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .sound-wave {
        gap: 2px;
        height: 40px;
    }
    
    .wave-bar {
        width: 2px;
    }
    
    .social-link {
        min-width: 180px;
        padding: 1rem;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .youtube-text h3 {
        font-size: 1.2rem;
    }
    
    .youtube-text p {
        font-size: 0.9rem;
    }
}
    
    .youtube-play-button {
        padding: 10px;
    }
    
    .youtube-play-button svg {
        width: 40px;
        height: 40px;
    }
}