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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(10, 10, 10, 0.1);
}

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

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.925rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #60a5fa, #3b82f6);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

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

.lang-toggle {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid #60a5fa;
    color: #60a5fa;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.lang-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.lang-toggle:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: #60a5fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.lang-toggle:hover::before {
    opacity: 1;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #0a0a0a;
    background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.2) 50%, rgba(10, 10, 10, 0.3) 100%),
                      url('./hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(96, 165, 250, 0.04) 0%, transparent 70%),
                linear-gradient(135deg, rgba(10, 10, 10, 0.2) 0%, rgba(26, 26, 26, 0.1) 50%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 1;
}

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

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 20%, #60a5fa 50%, #3b82f6 80%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    line-height: 0.85;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding: 0 0.75rem;
    overflow: visible;
    animation: titleGlow 0.8s ease-out 0.3s both;
}

@keyframes titleGlow {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title::before {
    content: 'YAKO';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: #60a5fa;
    filter: blur(5px);
    z-index: -1;
    opacity: 1;
}

.hero-title::after {
    content: 'YAKO';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    color: #60a5fa;
    filter: blur(15px);
    z-index: -2;
    opacity: 0.8;
}



@keyframes pulse {
    0%, 100% { 
        opacity: 0.7; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.08); 
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: -0.25rem;
    text-transform: none;
    letter-spacing: 0.03em;
    opacity: 0.9;
    position: relative;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1.2;
}

@keyframes glow {
    from {
        text-shadow: 
            /* Inner glow around letters */
            0 0 2px rgba(96, 165, 250, 0.9),
            0 0 4px rgba(96, 165, 250, 0.8),
            0 0 6px rgba(96, 165, 250, 0.7),
            0 0 8px rgba(96, 165, 250, 0.6),
            
            /* Medium glow surrounding letters */
            0 0 12px rgba(96, 165, 250, 0.5),
            0 0 16px rgba(96, 165, 250, 0.4),
            0 0 20px rgba(96, 165, 250, 0.3),
            0 0 25px rgba(96, 165, 250, 0.25),
            
            /* Outer glow around entire text */
            0 0 30px rgba(96, 165, 250, 0.2),
            0 0 35px rgba(96, 165, 250, 0.15),
            0 0 40px rgba(96, 165, 250, 0.1),
            0 0 50px rgba(96, 165, 250, 0.08);
    }
    to {
        text-shadow: 
            /* Inner glow around letters */
            0 0 3px rgba(96, 165, 250, 1),
            0 0 6px rgba(96, 165, 250, 0.95),
            0 0 9px rgba(96, 165, 250, 0.9),
            0 0 12px rgba(96, 165, 250, 0.8),
            
            /* Medium glow surrounding letters */
            0 0 18px rgba(96, 165, 250, 0.7),
            0 0 24px rgba(96, 165, 250, 0.6),
            0 0 30px rgba(96, 165, 250, 0.5),
            0 0 36px rgba(96, 165, 250, 0.4),
            
            /* Outer glow around entire text */
            0 0 45px rgba(96, 165, 250, 0.3),
            0 0 55px rgba(96, 165, 250, 0.25),
            0 0 65px rgba(96, 165, 250, 0.2),
            0 0 75px rgba(96, 165, 250, 0.15);
    }
}



.hero-description {
    font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    margin: 0.5rem 0 1rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 0.6rem 1.8rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 180px;
}

.btn i, .btn-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.9;
}

.btn-icon {
    color: currentColor;
    fill: currentColor;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #60a5fa 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid #60a5fa;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.audio-visualizer {
    display: flex;
    gap: 6px;
    align-items: end;
    height: 60px;
    margin-top: 3rem;
    justify-content: center;
}

.audio-visualizer .bar {
    width: 16px;
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 3px;
    animation: audioWave 2s ease-in-out infinite alternate;
    box-shadow: 0 0 8px rgba(96, 165, 250, 0.5);
}

.audio-visualizer .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-visualizer .bar:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.audio-visualizer .bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.audio-visualizer .bar:nth-child(4) { height: 45px; animation-delay: 0.3s; }
.audio-visualizer .bar:nth-child(5) { height: 25px; animation-delay: 0.4s; }
.audio-visualizer .bar:nth-child(6) { height: 40px; animation-delay: 0.5s; }
.audio-visualizer .bar:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.audio-visualizer .bar:nth-child(8) { height: 18px; animation-delay: 0.7s; }
.audio-visualizer .bar:nth-child(9) { height: 38px; animation-delay: 0.8s; }
.audio-visualizer .bar:nth-child(10) { height: 22px; animation-delay: 0.9s; }
.audio-visualizer .bar:nth-child(11) { height: 42px; animation-delay: 1.0s; }
.audio-visualizer .bar:nth-child(12) { height: 28px; animation-delay: 1.1s; }
.audio-visualizer .bar:nth-child(13) { height: 36px; animation-delay: 1.2s; }
.audio-visualizer .bar:nth-child(14) { height: 24px; animation-delay: 1.3s; }
.audio-visualizer .bar:nth-child(15) { height: 32px; animation-delay: 1.4s; }
.audio-visualizer .bar:nth-child(16) { height: 26px; animation-delay: 1.5s; }

@keyframes audioWave {
    0% { 
        height: 12px; 
        opacity: 0.6;
    }
    50% { 
        height: 100%; 
        opacity: 1;
    }
    100% { 
        height: 12px; 
        opacity: 0.6;
    }
}

/* Beats Section */
.beats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
}

.beats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(96, 165, 250, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #60a5fa 60%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.025em;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.beat-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(96, 165, 250, 0.2);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
    background: rgba(96, 165, 250, 0.15);
    border-color: #60a5fa;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
}

.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.beat-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.beat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.02) 0%, transparent 50%, rgba(167, 139, 250, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.beat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.2);
}

.beat-card:hover::before {
    opacity: 1;
}

.beat-artwork {
    height: 200px;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #60a5fa 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.beat-artwork::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.2) 70%);
}

.play-button {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.beat-info {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.beat-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
    letter-spacing: -0.015em;
}

.beat-producer {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.85rem;
}

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

.beat-genre {
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(10px);
}

.beat-duration {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.8rem;
}

.beat-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: right;
    letter-spacing: -0.025em;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    transition: all 0.3s ease;
}

.about-section:hover {
    background: linear-gradient(135deg, #0f0f0f 0%, #1f1f1f 50%, #0f0f0f 100%);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(167, 139, 250, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 2rem;
    color: #60a5fa;
    font-weight: 700;
    letter-spacing: -0.025em;
    transition: all 0.3s ease;
    cursor: default;
}

.about-text h3:hover {
    color: #3b82f6;
    transform: translateX(5px);
    text-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

.about-text p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: default;
}

.about-text p:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem 1.5rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-4px);
}

.stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    font-size: 0.9rem;
}

.studio-setup h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.studio-setup ul {
    list-style: none;
}

.studio-setup li {
    color: #a1a1aa;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.studio-setup li:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.studio-setup li::before {
    content: '•';
    color: #3b82f6;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #111111 100%);
    position: relative;
    transition: all 0.3s ease;
}

.contact-section:hover {
    background: linear-gradient(135deg, #161616 0%, #1f1f1f 50%, #161616 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(96, 165, 250, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(96, 165, 250, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(96, 165, 250, 0.1);
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.02) 0%, transparent 50%, rgba(167, 139, 250, 0.02) 100%);
    border-radius: 2rem;
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-group input:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(96, 165, 250, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
    transform: translateY(-1px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a1a1aa;
}

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

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #3b82f6;
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

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

.social-links a {
    width: 48px;
    height: 48px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: #60a5fa;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

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

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(96, 165, 250, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.tributunes-logo {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
}

.tributunes-logo:hover {
    transform: translateY(-1px);
}

.tributunes-logo span:first-child {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 0.95rem;
}

.tributunes-logo img {
    height: 24px;
    width: 24px;
    opacity: 0.9;
    filter: brightness(1.1);
}

.tributunes-logo span:last-child {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}



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

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 2rem;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        color: #ffffff;
    }

    .lang-toggle {
        margin-top: 1rem;
        padding: 0.6rem 1rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .hero {
        padding-top: 100px;
        background-attachment: scroll;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 8vh;
    }

    .hero-content {
        text-align: center;
        gap: 1rem;
        padding: 2rem 0;
        max-width: 100%;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 0.9;
        margin-bottom: 0;
    }

    .hero-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
        margin-top: -0.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-description {
        font-size: 1rem;
        margin: 0.25rem 0 0.75rem 0;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .btn {
        min-width: 140px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-icon {
        width: 12px;
        height: 12px;
    }

    .audio-visualizer {
        margin-top: 2rem;
        justify-content: center;
    }

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

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .beats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .beat-card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .container {
        padding: 0 20px;
    }

    .section {
        padding: 4rem 0;
    }

    .contact-form {
        padding: 2rem;
    }

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

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

    .navbar {
        padding: 0.8rem 0;
    }

    .nav-brand h1 {
        font-size: 1.5rem;
    }

    .hero {
        padding-top: 80px;
        min-height: 100vh;
        align-items: flex-end;
        padding-bottom: 8vh;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 0;
        line-height: 0.85;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.25rem);
        margin-top: -0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin: 0.25rem 0 1rem 0;
        padding: 0 1rem;
    }

    .audio-visualizer {
        height: 40px;
        margin-top: 1.5rem;
    }

    .bar {
        width: 3px;
    }

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

    .stat h3 {
        font-size: 1.5rem;
    }

    .beat-filters {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        flex: 0 0 auto;
        min-width: 60px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .beat-card {
        max-width: 100%;
        min-width: 250px;
    }

    .beats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .beat-title {
        font-size: 1.1rem;
    }

    .beat-genre {
        font-size: 0.8rem;
    }

    .beat-price {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .contact-item {
        gap: 0.8rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .social-links a {
        width: 44px;
        height: 44px;
    }

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

    .footer-left {
        text-align: center;
    }

    .footer-links {
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .tributunes-logo {
        justify-content: center;
    }
}

/* Extra small devices (phones, 360px and down) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 12vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

    .hero-description {
        font-size: 0.85rem;
        padding: 0 0.5rem;
    }

    .btn {
        min-width: 120px;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .audio-visualizer {
        gap: 2px;
        height: 35px;
    }

    .bar {
        width: 2px;
    }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px 0;
    }

    .hero-content {
        min-height: auto;
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .audio-visualizer {
        height: 30px;
        margin-top: 1rem;
    }

    .section {
        padding: 2rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: linear-gradient(135deg, rgba(10, 10, 10, 0.3) 0%, rgba(26, 26, 26, 0.2) 50%, rgba(10, 10, 10, 0.3) 100%), url('./hero-image.jpg');
    }
}

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

.hero-content,
.beats-section,
.about-section,
.contact-section {
    animation: fadeInUp 0.8s ease-out;
}

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

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

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2563eb;
}

/* Legal Pages */
.legal-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

.legal-date {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 3rem;
}

.legal-text {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.legal-text h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.legal-text h3 {
    color: #60a5fa;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #ffffff;
}

.contact-address {
    background: rgba(96, 165, 250, 0.08);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(96, 165, 250, 0.1);
}

.contact-address p {
    margin-bottom: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.contact-address strong {
    color: #60a5fa;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.address-content {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}