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

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #ffffff;
    --accent-color: #ff006e;
    --text-color: #f0f0f0;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

html {
    scroll-behavior: smooth;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Disable heavy effects on mobile for better performance */
@media (max-width: 768px) {
    .particles-container {
        display: none;
    }

    .light-orb {
        display: none;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    will-change: background, box-shadow;
}

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

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

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

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('IMG_8052.jpeg') center/cover;
    overflow: hidden;
    will-change: transform;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.1) 70%);
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.navbar-infinity {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: auto;
    filter: invert(1) drop-shadow(0 0 10px rgba(102, 126, 234, 0.5));
}

@media (max-width: 768px) {
    .navbar-infinity {
        width: 40px;
    }
}

.glitch {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 900;
    letter-spacing: 15px;
    position: relative;
    color: var(--secondary-color);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(102, 126, 234, 0.5);
    animation: glitchAnim 5s infinite;
}

@keyframes glitchAnim {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
    98% {
        transform: translate(2px, 2px);
    }
}

.tagline {
    font-size: 1.5rem;
    margin: 2rem 0;
    opacity: 0.9;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: 3px;
}

/* Music Section */
.music {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(118, 75, 162, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
}

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

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.single-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    transition: transform 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 0 20px rgba(102, 126, 234, 0.15),
        0 0 40px rgba(102, 126, 234, 0.1),
        inset 0 0 60px rgba(102, 126, 234, 0.03);
    animation: neonPulse 4s ease-in-out infinite;
    will-change: box-shadow;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(102, 126, 234, 0.15),
            0 0 40px rgba(102, 126, 234, 0.1),
            inset 0 0 60px rgba(102, 126, 234, 0.03);
    }
    50% {
        box-shadow:
            0 0 30px rgba(118, 75, 162, 0.25),
            0 0 60px rgba(118, 75, 162, 0.15),
            inset 0 0 80px rgba(118, 75, 162, 0.05);
    }
}

.single-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.single-card:hover::before {
    opacity: 0.1;
}

.single-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.6);
    box-shadow:
        0 0 40px rgba(102, 126, 234, 0.4),
        0 0 80px rgba(102, 126, 234, 0.25),
        0 15px 40px rgba(102, 126, 234, 0.3),
        inset 0 0 100px rgba(102, 126, 234, 0.08);
    animation: neonPulse 2s ease-in-out infinite;
}

.single-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Video Controls - Compact Modern Design */
.video-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.35rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 0.35rem 0.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-cover:hover .video-controls {
    opacity: 1;
    pointer-events: all;
}

.play-pause-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.play-pause-btn svg {
    width: 10px;
    height: 10px;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.play-pause-btn:active {
    transform: scale(0.95);
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.volume-icon {
    font-size: 0.65rem;
    opacity: 0.8;
}

.volume-slider {
    width: 40px;
    height: 2px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.volume-slider:hover {
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.volume-slider::-moz-range-thumb {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

/* Even smaller on mobile */
@media (max-width: 768px) {
    .video-controls {
        bottom: 40px;
        padding: 0.3rem 0.4rem;
        gap: 0.25rem;
        border-radius: 16px;
    }

    .play-pause-btn {
        width: 20px;
        height: 20px;
    }

    .play-pause-btn svg {
        width: 8px;
        height: 8px;
    }

    .volume-icon {
        font-size: 0.55rem;
    }

    .volume-slider {
        width: 30px;
    }
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.audio-indicator {
    display: none;
}

.single-cover img,
.single-cover .cover-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.single-card:hover .single-cover img,
.single-card:hover .single-cover .cover-video {
    transform: scale(1.1);
}

.cover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    align-items: flex-end;
}

.cover-overlay h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 1;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.single-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateX(5px);
}

.platform-link.spotify:hover {
    background: rgba(30, 215, 96, 0.2);
    border-color: rgba(30, 215, 96, 0.5);
}

.platform-link.apple:hover {
    background: rgba(252, 61, 108, 0.2);
    border-color: rgba(252, 61, 108, 0.5);
}

.platform-link svg {
    flex-shrink: 0;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-content {
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.about-content p {
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.contact-item svg {
    color: var(--accent-color);
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 2rem;
        font-size: 1.1rem;
    }

    .nav-menu a::after {
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo {
        font-size: 1.5rem;
    }

    .glitch {
        letter-spacing: 5px;
    }

    .tagline {
        font-size: 1rem;
    }

    .singles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .single-card {
        padding: 0;
    }

    .cover-overlay h3 {
        font-size: 1.2rem;
    }

    .single-links {
        padding: 1rem;
        gap: 0.75rem;
    }

    .platform-link {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
        min-height: 48px; /* Touch-friendly minimum */
    }

    .platform-link svg {
        width: 20px;
        height: 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 1rem;
        min-height: 48px; /* Touch-friendly */
    }

    /* Mobile video optimizations */
    .cover-video {
        object-fit: cover;
    }

    /* Show controls on mobile by default */
    .video-controls {
        opacity: 1;
        pointer-events: all;
    }

    /* Smaller controls on mobile */
    .play-pause-btn {
        width: 48px;
        height: 48px;
    }

    .play-pause-btn svg {
        width: 24px;
        height: 24px;
    }

    .volume-control {
        padding: 0.5rem 1rem;
    }

    .volume-slider {
        width: 80px;
    }

    .audio-indicator {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .singles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .single-card {
        padding: 0;
        max-width: 100%;
    }

    .cover-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .cover-overlay h3 {
        font-size: 1.4rem;
    }

    .single-links {
        padding: 1rem;
        gap: 0.75rem;
    }

    .platform-link {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.75rem;
        min-height: 48px; /* Touch-friendly minimum */
    }

    .platform-link svg {
        width: 20px;
        height: 20px;
    }

    .hero {
        min-height: 100vh;
    }

    .tagline {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.9rem 2.5rem;
        font-size: 1rem;
    }
}

/* Particle Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float linear infinite, pulse 2s ease-in-out infinite;
    opacity: 0;
    filter: blur(0.5px);
    will-change: transform, opacity;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(200px) scale(2) rotate(720deg);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        filter: blur(0.5px) brightness(1);
    }
    50% {
        filter: blur(1px) brightness(1.5);
    }
}

/* Subtle light orbs */
.light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: orbFloat ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

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

/* Single card light effect */
.single-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.single-card:hover::after {
    opacity: 1;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(15px, 15px) scale(1.05);
        opacity: 1;
    }
}

/* Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}
