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

:root {
    --primary-color: #be185d;
    --secondary-color: #f472b6;
    --accent-color: #fbbf24;
    --dark-color: #000000;
    --light-color: #1f1f1f;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --gradient-primary: linear-gradient(135deg, #be185d 0%, #f472b6 50%, #fbbf24 100%);
    --gradient-secondary: linear-gradient(135deg, #be185d 0%, #ec4899 50%, #f472b6 100%);
    --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-cool: linear-gradient(135deg, #000000 0%, #1f1f1f 25%, #be185d 50%, #f472b6 75%, #fbbf24 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    overflow-x: hidden;
    background: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* Artistic Font Styles */
.hero-title {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-family: 'Crimson Text', serif !important;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.nav-logo h2 {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.section-header h2 {
    font-family: 'Playfair Display', serif !important;
    font-style: italic;
    font-weight: 700;
}

.about-text .lead {
    font-family: 'Crimson Text', serif !important;
    font-style: italic;
    font-weight: 600;
}

.featured-track h3 {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.03em;
}

.track-title {
    font-family: 'Crimson Text', serif !important;
    font-style: italic;
    font-weight: 600;
}

.contact-item h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.footer-logo h3 {
    font-family: 'Dancing Script', cursive !important;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Additional Artistic Typography */
.gallery-overlay h4 {
    font-family: 'Crimson Text', serif !important;
    font-style: italic;
    font-weight: 600;
}

.achievement h4 {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.music-card h4 {
    font-family: 'Crimson Text', serif !important;
    font-style: italic;
    font-weight: 600;
}

.hero-description {
    font-family: 'Crimson Text', serif !important;
    font-style: italic;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.about-text p {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Special decorative elements */

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 3;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.25rem;
    color: white;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    box-shadow: none;
}

.navbar.scrolled {
    background: transparent;
    box-shadow: none;
}

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

.nav-logo h2 {
    color: white;
    font-size: 1.875rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

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

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

.nav-link:hover {
    color: #06b6d4;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.05);
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('micky-smoke.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0;
    padding: 0 80px;
    text-align: left;
    animation: slideUp 1s ease-out;
    display: flex;
    align-items: center;
    height: 100vh;
}

.hero-text {
    color: white;
    max-width: 700px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

.hero-title {
    font-size: clamp(4rem, 8vw, 7rem);
    margin-bottom: 32px;
    font-weight: 900;
    color: white;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.8), 0 12px 40px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    margin-bottom: 40px;
    font-weight: 400;
    color: white;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 8px 20px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    margin-bottom: 56px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 700px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 8px 20px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn {
    padding: 20px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    font-family: 'Poppins', sans-serif;
    text-transform: none;
    box-shadow: none;
    min-width: 180px;
    height: 56px;
}


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


.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: #9d174d;
    border-color: #9d174d;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

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

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #1f1f1f 100%);
    background-image: url('bg-about.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text .lead {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}

.about-text p {
    margin-bottom: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.achievement {
    text-align: center;
    padding: 40px 24px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(236, 72, 153, 0.4);
    position: relative;
    overflow: hidden;
}

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

.achievement:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

.achievement i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.achievement:hover i {
    transform: scale(1.1);
}

.achievement h4 {
    margin-bottom: 12px;
    color: white;
    font-size: 1.25rem;
}

.achievement p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.about-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient-primary);
    border-radius: 32px;
    opacity: 0.1;
    z-index: -1;
}

.about-photo {
    width: 320px;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-large);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Music Section */
.music {
    padding: 120px 0;
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.music::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.music-showcase {
    display: grid;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.featured-track {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.featured-track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: -1;
}

.featured-track h3 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.track-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-weight: 600;
}

.track-description {
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

.audio-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-btn:hover::before {
    opacity: 1;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.play-btn i {
    position: relative;
    z-index: 1;
}

.track-duration {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

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

.music-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 48px 32px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.music-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.music-card:hover .card-icon {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

.music-card h4 {
    margin-bottom: 16px;
    color: white;
    font-size: 1.5rem;
}

.music-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Gallery Section - Carousel */
.gallery {
    background: linear-gradient(135deg, #1f1f1f 0%, #000000 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(190, 24, 93, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 40px;
    animation: slideInUp 1s ease-out;
}

.slide-content h3 {
    font-family: 'Dancing Script', cursive !important;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: white;
}

.slide-content p {
    font-family: "Crimson Text", serif !important;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.9);
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: block;
    max-width: 600px;
    margin: 0 auto;
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: rgba(190, 24, 93, 0.8);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-nav i {
    font-size: 1.2rem;
}

/* Dots Navigation */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

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

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .slide-content h3 {
        font-size: 3rem;
    }
    
    .slide-content p {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .carousel-prev {
        left: 20px;
    }
    
    .carousel-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .gallery {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 30px;
        max-width: 600px;
    }
    
    .slide-content h3 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        max-width: 500px;
    }
    
    .carousel-nav {
        width: 45px;
        height: 45px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-nav i {
        font-size: 1rem;
    }
    
    .carousel-dots {
        bottom: 30px;
        gap: 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .gallery {
        height: 70vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .slide-content h3 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .carousel-nav i {
        font-size: 0.9rem;
    }
    
    .carousel-dots {
        bottom: 25px;
        gap: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--dark-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.contact-item i {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item h4 {
    margin-bottom: 8px;
    color: white;
    font-size: 1.25rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 60px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%236366f1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.875rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-social .social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.tech-partner {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-partner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tech-logo {
    height: 32px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.tech-logo:hover {
    opacity: 1;
}

.tech-text {
    text-align: center;
}

.tech-text p {
    margin: 4px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tech-links {
    margin: 8px 0;
}

.tech-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.design-love {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6) !important;
}

.design-love i {
    color: #be185d;
    margin: 0 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-large);
        padding: 32px 0;
        border-top: 1px solid rgba(59, 130, 246, 0.2);
    }

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

    .nav-menu .nav-link {
        padding: 16px 0;
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

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

    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }

    .hero-subtitle {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .about-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .achievements {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-track {
        padding: 40px 24px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: repeat(12, 60px);
        gap: 12px;
    }

    .gallery-item.featured {
        grid-column: span 3;
        grid-row: span 6;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: span 3;
        grid-row: span 3;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 6;
        grid-row: span 2;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .about-photo {
        width: 280px;
        height: 360px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 32px 24px;
    }

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

    .footer-links {
        justify-content: center;
        gap: 24px;
    }

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

    .tech-partner-content {
        flex-direction: column;
        gap: 12px;
    }

    .tech-logo {
        height: 28px;
    }

    .tech-text p {
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .container {
        padding: 0 20px;
    }
}

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

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(3rem, 10vw, 4rem);
    }

    .hero-subtitle {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

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

    .featured-track {
        padding: 32px 20px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .music-card {
        padding: 32px 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .achievement {
        padding: 32px 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(16, 50px);
        gap: 8px;
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 8;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3) {
        grid-column: span 2;
        grid-row: span 4;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 4;
        grid-row: span 3;
    }

    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: span 2;
        grid-row: span 3;
    }

    .about-photo {
        width: 240px;
        height: 320px;
    }
}

/* Studio Recording Session */
.studio {
	position: relative;
	padding: 0;
	min-height: 80vh;
	background-image: url('micky-studio.png');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
}

.studio::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(190,24,93,0.35) 50%, rgba(0,0,0,0.85) 100%);
	z-index: 1;
}

.studio-overlay { display: none; }

.studio-content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 120px 0;
}

.studio-player {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 32px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.player-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	z-index: 2;
	cursor: pointer;
}

.player-overlay span {
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.02em;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.2);
	padding: 10px 16px;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

#studio-visualizer {
	width: 100%;
	height: 240px;
	display: block;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.6) 100%);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.player-controls {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 24px;
	align-items: center;
	margin-top: 20px;
    z-index: 3;
}

/* Playing indicator */
.studio-player.playing::after {
	content: '';
	position: absolute;
	top: 18px;
	right: 18px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #22c55e;
	box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
	animation: pulseDot 1.6s ease-out infinite;
}
@keyframes pulseDot {
	0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
	70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
	100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.player-btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.08);
	color: white;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s ease;
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.player-btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.15); }
.player-btn i { font-size: 1.1rem; }
.play-toggle, .mute-toggle { width: 56px; height: 56px; padding: 0; border-radius: 50%; }
.play-toggle:focus-visible, .mute-toggle:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(190,24,93,0.25); }

.mute-toggle { display: inline-flex; gap: 8px; padding: 0; border-radius: 50%; height: 56px; }
.mute-toggle .mute-label { font-size: 0.9rem; opacity: 0.9; }

.volume { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); }
.volume-range { width: 180px; accent-color: var(--primary-color); }

.time { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; }
.progress { height: 6px; background: rgba(255,255,255,0.15); border-radius: 999px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--gradient-primary); width: 0%; transition: width 0.15s linear; }
.current-time, .duration { font-variant-numeric: tabular-nums; font-size: 0.95rem; color: rgba(255,255,255,0.9); }

.seek-range {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	background: rgba(255,255,255,0.15);
	border-radius: 999px;
	outline: none;
	position: relative;
	overflow: visible; /* allow thumb to render fully */
}
.seek-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--primary-color);
	border: 2px solid #ffffff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	cursor: pointer;
	margin-top: -6px; /* center thumb on 6px track */
}
.seek-range::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--primary-color);
	border: 2px solid #ffffff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.4);
	cursor: pointer;
}
/* Firefox track and progress */
.seek-range::-moz-range-track { height: 6px; background: rgba(255,255,255,0.15); border-radius: 999px; }
.seek-range::-moz-range-progress { height: 6px; background: var(--primary-color); border-radius: 999px; }

/* Focus state */
.seek-range:focus::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(190,24,93,0.25); }
.seek-range:focus::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(190,24,93,0.25); }

@media (max-width: 768px) {
	.studio { background-attachment: scroll; }
	#studio-visualizer { height: 180px; }
	.player-controls { grid-template-columns: 1fr; gap: 16px; }
	.time { grid-template-columns: auto 1fr auto; }
	.volume { justify-content: space-between; }
	.volume-range { width: 100%; }
}
