/* ==========================================================================
   IMANONAIR - Ultra-Premium Futuristic Dark Aesthetic Stylesheet
   ========================================================================== */

:root {
    /* Color System */
    --bg-obsidian: #08090C;
    --bg-card: rgba(18, 20, 29, 0.65);
    --bg-card-hover: rgba(26, 29, 43, 0.85);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-glow: rgba(0, 245, 255, 0.3);

    --neon-cyan: #00F5FF;
    --neon-magenta: #FF007A;
    --neon-purple: #8A2BE2;
    --neon-green: #00FF66;

    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    /* Fonts */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Outfit', 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --glow-cyan-shadow: 0 0 25px rgba(0, 245, 255, 0.35);
    --glow-magenta-shadow: 0 0 25px rgba(255, 0, 122, 0.35);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* Reset & Global Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-obsidian);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.w-full {
    width: 100%;
}

/* Ambient Background Canvas */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.3;
    animation: floatOrb 20s infinite alternate ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--neon-purple);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: var(--neon-cyan);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-magenta);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

.bg-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.4;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.15); }
}

/* Glassmorphism Panel Component */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.glass-button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.75rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-primary.neon-btn {
    background: linear-gradient(135deg, var(--neon-cyan), #00A8FF);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.8rem 1.6rem;
    cursor: pointer;
    box-shadow: var(--glow-cyan-shadow);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
}

.btn-primary.neon-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 245, 255, 0.6);
}

.btn-primary.neon-btn-magenta {
    background: linear-gradient(135deg, var(--neon-magenta), #D9006C);
    color: #FFF;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 0.85rem 1.7rem;
    cursor: pointer;
    box-shadow: var(--glow-magenta-shadow);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
}

.btn-primary.neon-btn-magenta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 0, 122, 0.6);
}

/* Main Header */
.main-header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1240px;
    z-index: 1000;
    padding: 0.8rem 1.5rem;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-primary);
    background: linear-gradient(90deg, #FFF, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.on-air-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 0, 122, 0.15);
    border: 1px solid rgba(255, 0, 122, 0.4);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: var(--neon-magenta);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-magenta);
    animation: pulse 1.5s infinite;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--neon-magenta);
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--neon-magenta); }
    100% { transform: scale(0.95); opacity: 0.8; }
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--neon-cyan);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 9.5rem;
    padding-bottom: 5rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
}

.fa-spin-slow {
    animation: fa-spin 8s infinite linear;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 2rem;
}

/* Audio Spectrum Teaser in Hero */
.audio-spectrum-teaser {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.audio-spectrum-teaser .bar {
    width: 3px;
    height: 16px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: barJump 1.2s infinite ease-in-out alternate;
}

.audio-spectrum-teaser .bar:nth-child(2) { animation-delay: -0.2s; }
.audio-spectrum-teaser .bar:nth-child(3) { animation-delay: -0.4s; }
.audio-spectrum-teaser .bar:nth-child(4) { animation-delay: -0.6s; }
.audio-spectrum-teaser .bar:nth-child(5) { animation-delay: -0.8s; }
.audio-spectrum-teaser .bar:nth-child(6) { animation-delay: -1.0s; }

@keyframes barJump {
    0% { height: 4px; }
    100% { height: 22px; background: var(--neon-magenta); }
}

.spectrum-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #FFF;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: var(--glass-border);
}

/* Hero Avatar Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-card-wrapper {
    position: relative;
    width: 320px;
    height: 380px;
}

.glowing-avatar-ring {
    position: absolute;
    inset: -15px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
    filter: blur(25px);
    opacity: 0.7;
    animation: rotateGlow 10s infinite linear;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-avatar-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--card-shadow);
}

.floating-badge {
    position: absolute;
    background: rgba(18, 20, 29, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.badge-top {
    top: 20px;
    left: -30px;
}

.badge-bottom {
    bottom: 20px;
    right: -30px;
}

.spotify-color { color: #1DB954; font-size: 1.2rem; }
.pulse-icon { color: var(--neon-cyan); animation: pulse 2s infinite; }

/* Sections Styling */
.section-badge {
    display: inline-block;
    color: var(--neon-cyan);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

/* Discography Section */
.discography-section {
    padding: 6rem 0;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--neon-cyan);
    color: #000;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.track-card {
    padding: 1.2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.track-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 245, 255, 0.15);
}

.card-image-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.track-card:hover .card-image-box img {
    transform: scale(1.06);
}

.card-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    border: none;
    color: var(--neon-cyan);
    font-size: 2.8rem;
    cursor: pointer;
}

.card-image-box:hover .card-play-overlay {
    opacity: 1;
}

.genre-pill {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.track-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.artist-name {
    color: var(--neon-cyan);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.track-meta {
    display: flex;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.card-external-links {
    display: flex;
    gap: 0.6rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--glass-border);
}

.ext-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.ext-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
    transform: translateY(-2px);
}

.ext-btn.spotify:hover { color: #1DB954; }
.ext-btn.apple:hover { color: #FA243C; }
.ext-btn.soundcloud:hover { color: #FF5500; }
.ext-btn.audiomack:hover { color: #FFA200; }

/* About Section */
.about-section {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.about-card {
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.vibe-quote p {
    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 600;
    color: var(--text-primary);
}

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

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Social Hub */
.social-section {
    padding: 5rem 0;
}

.social-buttons-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.8rem;
    border-radius: 14px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition-fast);
}

.social-card i {
    font-size: 1.4rem;
}

.social-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 25px rgba(0, 245, 255, 0.2);
}

.social-card.spotify:hover { border-color: #1DB954; box-shadow: 0 10px 25px rgba(29, 185, 84, 0.25); }
.social-card.apple:hover { border-color: #FA243C; box-shadow: 0 10px 25px rgba(250, 36, 60, 0.25); }
.social-card.soundcloud:hover { border-color: #FF5500; box-shadow: 0 10px 25px rgba(255, 85, 0, 0.25); }
.social-card.instagram:hover { border-color: #E1306C; box-shadow: 0 10px 25px rgba(225, 48, 108, 0.25); }
.social-card.telegram:hover { border-color: #0088CC; box-shadow: 0 10px 25px rgba(0, 136, 204, 0.25); }

/* Newsletter Section (Replaces Services/Contact) */
.newsletter-section {
    padding: 5rem 0 8rem 0;
}

.newsletter-card {
    padding: 4rem 2rem;
    border-color: rgba(255, 0, 122, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 0, 122, 0.15);
    border: 1px solid rgba(255, 0, 122, 0.4);
    color: var(--neon-magenta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.newsletter-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 2.5rem auto;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 0.4rem 0.5rem 0.4rem 1.2rem;
    transition: var(--transition-fast);
}

.input-wrapper:focus-within {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 122, 0.3);
}

.input-icon {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

.input-wrapper input {
    background: none;
    border: none;
    outline: none;
    color: #FFF;
    font-family: inherit;
    font-size: 1rem;
    flex-grow: 1;
}

.input-wrapper button {
    flex-shrink: 0;
}

.newsletter-msg {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.newsletter-msg.success {
    display: block;
    color: var(--neon-green);
}

/* Footer */
.main-footer {
    padding: 2.5rem 0 7rem 0;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.4);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

/* Interactive Sticky Audio Player Bar */
.audio-player-bar {
    position: fixed;
    bottom: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2.4rem);
    max-width: 1080px;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    background: rgba(14, 16, 25, 0.9);
    border: 1px solid rgba(0, 245, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 245, 255, 0.15);
}

.player-container {
    display: grid;
    grid-template-columns: 240px 1fr 180px;
    align-items: center;
    gap: 1.5rem;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    overflow: hidden;
}

.player-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.player-text .track-title {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-text .artist-name {
    font-size: 0.78rem;
    color: var(--neon-cyan);
}

.player-controls-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.control-btn:hover {
    color: #FFF;
    transform: scale(1.1);
}

.control-btn.play-main {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--neon-cyan);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: var(--glow-cyan-shadow);
}

.control-btn.play-main:hover {
    transform: scale(1.12);
    box-shadow: 0 0 25px rgba(0, 245, 255, 0.7);
}

.progress-bar-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.progress-slider-wrapper {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.progress-slider-wrapper input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 4px;
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.progress-slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.progress-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 2px;
    pointer-events: none;
    width: 0%;
}

.player-extra-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
}

.active-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.v-bar {
    width: 3px;
    height: 100%;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: vBarPulse 1s infinite alternate ease-in-out;
}

.v-bar:nth-child(2) { animation-delay: -0.3s; }
.v-bar:nth-child(3) { animation-delay: -0.6s; }
.v-bar:nth-child(4) { animation-delay: -0.9s; }

@keyframes vBarPulse {
    0% { height: 3px; }
    100% { height: 18px; background: var(--neon-magenta); }
}

.volume-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volume-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.volume-box input[type="range"] {
    width: 60px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.15);
    height: 4px;
    border-radius: 2px;
    outline: none;
}

.volume-box input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-primary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

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

    .player-container {
        grid-template-columns: 1fr 1fr;
    }

    .player-extra-controls {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .input-wrapper {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .input-wrapper input {
        width: 100%;
    }

    .input-wrapper button {
        width: 100%;
    }

    .player-container {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .player-track-info {
        justify-content: center;
    }

    .progress-bar-container {
        font-size: 0.7rem;
    }
}
