/*
 * ============================================================================
 * MERITONE - Stylesheet
 * ============================================================================
 *
 * MIT License
 * Copyright (c) 2025 MERITONE (Mergim Mavraj)
 * Development by Astoria Systems GmbH
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 *
 * ============================================================================
 * DESCRIPTION
 * ============================================================================
 *
 * Complete stylesheet for the MERITONE music artist website featuring a modern,
 * dark theme with vibrant accent colors and extensive CSS animations.
 *
 * ============================================================================
 * CSS VARIABLES (Customization)
 * ============================================================================
 *
 * Colors:
 *   --primary: #FF5C7A        Main accent color (coral pink)
 *   --primary-dark: #e64d6a   Darker primary for hover states
 *   --secondary: #3BD5DA      Secondary accent (turquoise)
 *   --accent: #A86BFF         Third accent (purple)
 *   --dark: #0E1A25           Main background color
 *   --darker: #091219         Darker background for sections
 *   --light: #E8E8E8          Light text color
 *   --gray: #8a9aab           Muted text color
 *
 * Gradients:
 *   --gradient-primary        Primary to secondary gradient
 *   --gradient-accent         Accent to primary gradient
 *   --gradient-dark           Dark background gradient
 *
 * Shadows:
 *   --shadow                  Standard box shadow with primary color
 *   --shadow-lg               Large box shadow for hover states
 *
 * Transitions:
 *   --transition              Standard transition (0.3s ease)
 *   --transition-slow         Slow transition (0.5s ease)
 *
 * ============================================================================
 * KEY FEATURES
 * ============================================================================
 *
 * Custom Cursors:
 *   - Default: Music note SVG cursor
 *   - Clickable elements: Play button SVG cursor
 *
 * Animations:
 *   - float-particle: Floating particles in hero background
 *   - wave-move: Sound wave animation
 *   - eq-bounce: Equalizer bar animation
 *   - pulse: Radial gradient pulse effect
 *   - fadeInUp: Content entrance animation
 *   - glitch-anim: Glitch text effect
 *   - bounce: Scroll indicator bounce
 *   - bg-drift: Background drift effect
 *   - wave: Waveform animation
 *   - shimmer: Shimmer effect on skill items
 *   - rotate-bg: Rotating background gradient
 *   - float-icon: Floating icon animation
 *   - gradientShift: Animated gradient background
 *   - social-pulse: Social icon pulse effect
 *
 * Layout Components:
 *   - Fixed navigation with scroll effect
 *   - Full-viewport hero section
 *   - Two-column about section
 *   - Responsive grid layouts
 *   - Mobile hamburger menu
 *
 * Special Effects:
 *   - Glitch text effect on logo
 *   - Gradient text with background-clip
 *   - Backdrop blur on navigation
 *   - Card hover transformations
 *   - Platform-specific colors
 *
 * ============================================================================
 * RESPONSIVE BREAKPOINTS
 * ============================================================================
 *
 *   @media (max-width: 968px)  - Tablet layout adjustments
 *   @media (max-width: 768px)  - Mobile menu, single column layouts
 *   @media (max-width: 480px)  - Small mobile adjustments
 *
 * ============================================================================
 * CUSTOMIZATION GUIDE
 * ============================================================================
 *
 * To customize the color scheme:
 *   1. Modify the CSS variables in :root
 *   2. Update gradient definitions
 *   3. Adjust platform-specific colors in .platform-card classes
 *
 * To change animations:
 *   1. Modify @keyframes definitions
 *   2. Adjust animation-duration and animation-delay values
 *   3. Toggle animations by adding/removing animation properties
 *
 * To customize fonts:
 *   1. Update font-family in body selector
 *   2. Modify the Bunny Fonts link in HTML <head>
 *   3. Adjust font-weight values as needed
 *
 * ============================================================================
 * BROWSER COMPATIBILITY
 * ============================================================================
 *
 * This stylesheet uses modern CSS features:
 *   - CSS Custom Properties (CSS Variables)
 *   - CSS Grid and Flexbox
 *   - backdrop-filter (not supported in all browsers)
 *   - background-clip: text (requires -webkit- prefix)
 *   - CSS Animations and Transitions
 *   - clamp() for responsive typography
 *
 * For older browser support, consider adding polyfills or fallbacks.
 *
 * ============================================================================
 */

/* CSS Variables */
:root {
    --primary: #FF5C7A;
    --primary-dark: #e64d6a;
    --secondary: #3BD5DA;
    --accent: #A86BFF;
    --dark: #0E1A25;
    --darker: #091219;
    --light: #E8E8E8;
    --light-bg: #F5F7FA;
    --gray: #8a9aab;
    --gray-dark: #374151;
    --text-dark: #0D0D0D;

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);

    --shadow: 0 10px 40px rgba(255, 92, 122, 0.2);
    --shadow-lg: 0 20px 60px rgba(255, 92, 122, 0.3);

    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Custom Scrollbar - Music Style */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
    border-radius: 6px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
        var(--primary) 0%,
        var(--secondary) 25%,
        var(--accent) 50%,
        var(--secondary) 75%,
        var(--primary) 100%);
    background-size: 100% 200%;
    border-radius: 6px;
    border: 2px solid var(--darker);
    animation: scrollbar-pulse 3s ease-in-out infinite;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
        var(--primary) 0%,
        #FF8FA3 25%,
        var(--secondary) 50%,
        #7EEAEE 75%,
        var(--accent) 100%);
    background-size: 100% 200%;
    animation: scrollbar-pulse 1s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 92, 122, 0.5);
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary);
    box-shadow: 0 0 15px rgba(255, 92, 122, 0.8);
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
    background: var(--darker);
}

@keyframes scrollbar-pulse {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--darker);
}

/* Custom Cursors - Music Note */
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23FF5C7A' d='M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z'/%3E%3Cpath fill='%233BD5DA' d='M10 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'/%3E%3C/svg%3E") 2 2, auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Clickable elements get play button cursor */
a, button, .btn, .platform-card, .genre-card, .social-icon, .nav-toggle {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%230E1A25' stroke='%23FF5C7A' stroke-width='2'/%3E%3Cpath fill='%233BD5DA' d='M9.5 7.5v9l7-4.5z'/%3E%3C/svg%3E") 12 12, pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(14, 26, 37, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: var(--transition);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 8px;
    border-radius: 4px;
    transition: var(--transition);
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--light);
}

.lang-btn.active {
    color: var(--primary);
    background: rgba(255, 92, 122, 0.1);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-dark);
}

/* Floating particles animation */
.hero-bg .particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; animation-duration: 18s; background: var(--secondary); }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 4s; animation-duration: 14s; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-delay: 1s; animation-duration: 16s; background: var(--accent); }
.particle:nth-child(5) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 20s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-delay: 5s; animation-duration: 13s; background: var(--secondary); }
.particle:nth-child(7) { left: 70%; top: 50%; animation-delay: 2s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; top: 25%; animation-delay: 4s; animation-duration: 15s; background: var(--accent); }
.particle:nth-child(9) { left: 90%; top: 85%; animation-delay: 1s; animation-duration: 19s; }
.particle:nth-child(10) { left: 15%; top: 55%; animation-delay: 3s; animation-duration: 11s; background: var(--secondary); }
.particle:nth-child(11) { left: 85%; top: 45%; animation-delay: 0s; animation-duration: 14s; }
.particle:nth-child(12) { left: 45%; top: 15%; animation-delay: 2s; animation-duration: 16s; background: var(--accent); }

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -50px) scale(1.5);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -100px) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -50px) scale(1.2);
        opacity: 0.5;
    }
}

/* Animated wave lines */
.wave-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    opacity: 0.1;
}

.wave-line {
    position: absolute;
    width: 200%;
    height: 100%;
    background: transparent;
    border-top: 2px solid var(--primary);
    border-radius: 50%;
    animation: wave-move 8s linear infinite;
}

.wave-line:nth-child(1) { bottom: 20px; animation-duration: 7s; border-color: var(--primary); }
.wave-line:nth-child(2) { bottom: 40px; animation-duration: 9s; animation-delay: -2s; border-color: var(--secondary); }
.wave-line:nth-child(3) { bottom: 60px; animation-duration: 11s; animation-delay: -4s; border-color: var(--accent); }

@keyframes wave-move {
    0% { transform: translateX(0) rotate(3deg); }
    100% { transform: translateX(-50%) rotate(3deg); }
}

/* Animated Equalizer Background */
.equalizer-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    padding: 0 20px;
    opacity: 0.15;
    pointer-events: none;
}

.eq-bar {
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px 2px 0 0;
    animation: eq-bounce 1s ease-in-out infinite;
}

.eq-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 35%; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 80%; animation-delay: 0.15s; }
.eq-bar:nth-child(6) { height: 50%; animation-delay: 0.25s; }
.eq-bar:nth-child(7) { height: 70%; animation-delay: 0.05s; }
.eq-bar:nth-child(8) { height: 45%; animation-delay: 0.35s; }
.eq-bar:nth-child(9) { height: 90%; animation-delay: 0.2s; }
.eq-bar:nth-child(10) { height: 55%; animation-delay: 0.1s; }
.eq-bar:nth-child(11) { height: 75%; animation-delay: 0.3s; }
.eq-bar:nth-child(12) { height: 40%; animation-delay: 0.15s; }
.eq-bar:nth-child(13) { height: 85%; animation-delay: 0.25s; }
.eq-bar:nth-child(14) { height: 50%; animation-delay: 0.05s; }
.eq-bar:nth-child(15) { height: 65%; animation-delay: 0.35s; }
.eq-bar:nth-child(16) { height: 30%; animation-delay: 0.2s; }
.eq-bar:nth-child(17) { height: 70%; animation-delay: 0.1s; }
.eq-bar:nth-child(18) { height: 45%; animation-delay: 0.3s; }
.eq-bar:nth-child(19) { height: 80%; animation-delay: 0.15s; }
.eq-bar:nth-child(20) { height: 35%; animation-delay: 0.25s; }

@keyframes eq-bounce {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(255, 92, 122, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(59, 213, 218, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

/* Footer Logo Image */
.footer-logo-img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    border-radius: 50%;
    opacity: 0.8;
    filter: drop-shadow(0 0 10px rgba(255, 92, 122, 0.2));
    transition: var(--transition);
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(59, 213, 218, 0.4));
}

/* Glitch effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim-1 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip: rect(20px, 9999px, 56px, 0); }
    25% { clip: rect(62px, 9999px, 94px, 0); }
    50% { clip: rect(12px, 9999px, 76px, 0); }
    75% { clip: rect(42px, 9999px, 84px, 0); }
    100% { clip: rect(28px, 9999px, 68px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 99px, 0); }
    25% { clip: rect(30px, 9999px, 68px, 0); }
    50% { clip: rect(78px, 9999px, 120px, 0); }
    75% { clip: rect(22px, 9999px, 52px, 0); }
    100% { clip: rect(88px, 9999px, 135px, 0); }
}

.tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--gray);
    margin-bottom: 30px;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-genres {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
    position: relative;
}

.hero-genres .genre-rotate {
    position: absolute;
    padding: 10px 30px;
    border: 2px solid rgba(255, 92, 122, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    background: rgba(255, 92, 122, 0.1);
}

.hero-genres .genre-rotate.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-genres .genre-rotate.exit {
    opacity: 0;
    transform: translateY(-20px);
}

/* Different colors for each genre */
.hero-genres .genre-rotate:nth-child(1) {
    border-color: var(--primary);
    background: rgba(255, 92, 122, 0.15);
    color: var(--primary);
}

.hero-genres .genre-rotate:nth-child(2) {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
}

.hero-genres .genre-rotate:nth-child(3) {
    border-color: var(--secondary);
    background: rgba(59, 213, 218, 0.15);
    color: var(--secondary);
}

.hero-genres .genre-rotate:nth-child(4) {
    border-color: var(--accent);
    background: rgba(168, 107, 255, 0.15);
    color: var(--accent);
}

.hero-genres .genre-rotate:nth-child(5) {
    border-color: var(--gray);
    background: rgba(138, 154, 171, 0.15);
    color: var(--light);
}

.hero-genres span:hover {
    background: rgba(255, 92, 122, 0.2);
    border-color: var(--primary);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--light);
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gray);
}

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

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

/* Section Styles */
section {
    padding: 100px 0;
}

/* Section entrance animations */
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animated underline */
.underline {
    transform: scaleX(0);
    transition: transform 0.6s ease 0.3s;
}

.section-header.animate-in .underline {
    transform: scaleX(1);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-top: -40px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 92, 122, 0.05) 0%, transparent 50%);
    animation: bg-drift 20s ease-in-out infinite;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 213, 218, 0.05) 0%, transparent 50%);
    animation: bg-drift 25s ease-in-out infinite reverse;
}

@keyframes bg-drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(5%, 5%); }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.studio-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 92, 122, 0.2);
    transition: var(--transition);
    filter: brightness(0.9) saturate(1.1);
}

.studio-image:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 92, 122, 0.3);
    filter: brightness(1) saturate(1.2);
}

.image-credit {
    text-align: center;
    margin-top: 10px;
    font-size: 0.75rem;
    color: var(--gray);
    opacity: 0.7;
}

.image-credit a {
    color: var(--gray);
    text-decoration: underline;
    transition: var(--transition);
}

.image-credit a:hover {
    color: var(--primary);
}

.image-placeholder {
    aspect-ratio: 1;
    background: var(--gradient-dark);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 92, 122, 0.2);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 92, 122, 0.1) 0%, transparent 70%);
}

.waveform {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 60px;
}

.waveform span {
    width: 6px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: wave 1.2s ease-in-out infinite;
}

.waveform span:nth-child(1) { animation-delay: 0s; }
.waveform span:nth-child(2) { animation-delay: 0.1s; }
.waveform span:nth-child(3) { animation-delay: 0.2s; }
.waveform span:nth-child(4) { animation-delay: 0.3s; }
.waveform span:nth-child(5) { animation-delay: 0.4s; }
.waveform span:nth-child(6) { animation-delay: 0.5s; }
.waveform span:nth-child(7) { animation-delay: 0.6s; }
.waveform span:nth-child(8) { animation-delay: 0.7s; }
.waveform span:nth-child(9) { animation-delay: 0.8s; }
.waveform span:nth-child(10) { animation-delay: 0.9s; }

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

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.about-text strong {
    color: var(--light);
}

.skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 92, 122, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 92, 122, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 92, 122, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.skill-item:nth-child(1)::before { animation-delay: 0s; }
.skill-item:nth-child(2)::before { animation-delay: 0.5s; }
.skill-item:nth-child(3)::before { animation-delay: 1s; }
.skill-item:nth-child(4)::before { animation-delay: 1.5s; }

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.skill-item:hover {
    background: rgba(255, 92, 122, 0.3);
    transform: translateX(10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 92, 122, 0.3);
}

.skill-icon {
    font-size: 1.3rem;
}

/* Music Section */
.music {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(168, 107, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(255, 92, 122, 0.08) 0%, transparent 40%);
    animation: music-pulse 8s ease-in-out infinite;
}

@keyframes music-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Spotify Embed */
.spotify-embed {
    max-width: 600px;
    margin: 0 auto 40px;
    border-radius: 14px;
    padding: 3px;
    background: var(--gradient-primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.spotify-embed:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.spotify-embed iframe {
    display: block;
    border-radius: 12px;
}

.music-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.platform-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.platform-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 92, 122, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.platform-card:hover::after {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 92, 122, 0.5);
    background: rgba(255, 92, 122, 0.1);
    box-shadow: 0 15px 40px rgba(255, 92, 122, 0.3);
}

.platform-card:hover .platform-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px currentColor);
}

.platform-icon {
    width: 60px;
    height: 60px;
    transition: var(--transition);
}

.platform-icon svg {
    width: 100%;
    height: 100%;
}

/* Platform colors - Official 2024/2025 Brand Colors */
.platform-card.spotify .platform-icon { color: #1DB954; }
.platform-card.apple .platform-icon { color: #FA57C1; }
.platform-card.soundcloud .platform-icon { color: #FF5500; }
.platform-card.youtube .platform-icon { color: #FF0033; }
.platform-card.deezer .platform-icon { color: #A238FF; }
.platform-card.amazon .platform-icon { color: #00A8E1; }
.platform-card.tiktok .platform-icon { color: #FE2C55; }
.platform-card.tidal .platform-icon { color: #00FFFF; }
.platform-card.pandora .platform-icon { color: #224099; }
.platform-card.facebook .platform-icon { color: #0866FF; }
.platform-card.instagram .platform-icon { color: #E4405F; }

.platform-card > span:not(.coming-soon-badge) {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Coming Soon Platforms */
.coming-soon-platform {
    position: relative;
    cursor: default;
}

.coming-soon-platform::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14, 26, 37, 0.7);
    border-radius: 15px;
    z-index: 5;
}

.coming-soon-platform:hover {
    transform: translateY(-5px) scale(1.01);
}

.coming-soon-platform:hover::before {
    background: rgba(14, 26, 37, 0.5);
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    white-space: nowrap;
}

/* All Platforms Link */
.all-platforms-link {
    text-align: center;
    margin-top: 30px;
}

.coming-soon {
    text-align: center;
    padding: 30px;
    background: rgba(255, 92, 122, 0.1);
    border-radius: 15px;
    border: 1px dashed rgba(255, 92, 122, 0.3);
}

.coming-soon p {
    color: var(--primary);
    font-weight: 500;
}

/* Genres Section */
.genres {
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.genres::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: conic-gradient(from 0deg at 50% 50%,
        rgba(255, 92, 122, 0.03) 0deg,
        rgba(59, 213, 218, 0.03) 90deg,
        rgba(168, 107, 255, 0.03) 180deg,
        rgba(255, 92, 122, 0.03) 270deg,
        rgba(59, 213, 218, 0.03) 360deg);
    animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.genre-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.genre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.genre-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 92, 122, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-slow);
}

.genre-card:hover::after {
    opacity: 1;
    transform: translate(25%, -25%);
}

.genre-card:hover::before {
    transform: scaleX(1);
}

.genre-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 92, 122, 0.1);
    box-shadow: 0 20px 50px rgba(255, 92, 122, 0.25);
}

.genre-card:hover .genre-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 15px currentColor);
}

.genre-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: var(--transition);
    animation: float-icon 3s ease-in-out infinite;
}

.genre-card:nth-child(1) .genre-icon { animation-delay: 0s; }
.genre-card:nth-child(2) .genre-icon { animation-delay: 0.5s; }
.genre-card:nth-child(3) .genre-icon { animation-delay: 1s; }
.genre-card:nth-child(4) .genre-icon { animation-delay: 1.5s; }

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}


.genre-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light);
}

.genre-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Genre-specific colors */
.genre-card.hardstyle:hover { border-color: #FF5C7A; }
.genre-card.hardcore:hover { border-color: #3BD5DA; }
.genre-card.acoustic:hover { border-color: #10b981; }
.genre-card.orchestral:hover { border-color: #A86BFF; }

/* Mystery Card - Animated */
.genre-card.mystery {
    background: linear-gradient(135deg, rgba(255, 92, 122, 0.1), rgba(59, 213, 218, 0.1), rgba(168, 107, 255, 0.1));
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.genre-card.mystery:hover {
    border-color: var(--light);
    animation: gradientShift 1s ease infinite;
}

.genre-mystery-icon {
    font-size: 2.5rem !important;
    font-weight: 800;
    animation: mysteryPulse 2s ease-in-out infinite;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mystery-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes mysteryPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
        opacity: 1;
    }
}

/* Contact Section */
.contact {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background:
        radial-gradient(circle at 30% 70%, rgba(255, 92, 122, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(59, 213, 218, 0.05) 0%, transparent 30%);
    animation: contact-float 15s ease-in-out infinite;
}

@keyframes contact-float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3%, -3%); }
    50% { transform: translate(0, -5%); }
    75% { transform: translate(-3%, -3%); }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 92, 122, 0.1);
    transform: translateX(10px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px var(--primary));
}

.contact-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-item h4 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item p {
    color: var(--light);
    font-weight: 500;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary);
}

.social-links {
    text-align: center;
}

.social-links h4 {
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 92, 122, 0.1);
    border: 1px solid rgba(255, 92, 122, 0.2);
    transition: var(--transition);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 10px 30px rgba(255, 92, 122, 0.5);
}

.social-icon:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px white);
}

.social-icon svg {
    transition: var(--transition);
}

/* Staggered pulse animation for social icons */
.social-icon {
    animation: social-pulse 3s ease-in-out infinite;
}

.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.3s; }
.social-icon:nth-child(3) { animation-delay: 0.6s; }
.social-icon:nth-child(4) { animation-delay: 0.9s; }

@keyframes social-pulse {
    0%, 100% { box-shadow: 0 0 0 rgba(255, 92, 122, 0); }
    50% { box-shadow: 0 0 15px rgba(255, 92, 122, 0.3); }
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-tagline {
    margin-top: 5px;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

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

    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        background: rgba(14, 26, 37, 0.98);
    }

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

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

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

    .hero-text h1 {
        letter-spacing: 4px;
    }

    /* Keep glitch effect on mobile but smaller */
    .glitch::before,
    .glitch::after {
        display: block;
    }

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

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

    section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-genres {
        gap: 10px;
    }

    .hero-genres span {
        padding: 6px 15px;
        font-size: 0.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .music-platforms {
        grid-template-columns: 1fr 1fr;
    }

    .platform-card {
        padding: 25px 15px;
    }
}
