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

:root {
    --primary-color: #00d4ff;
    --secondary-color: #0099ff;
    --accent-color: #ff00d4;
    --dark-bg: #0d1117;
    --darker-bg: #010409;
    --light-text: #ffffff;
    --gray-text: #8b94a8;
    --card-bg: rgba(0, 212, 255, 0.05);
    --gradient-1: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 17, 23, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.1), inset 0 1px 0 rgba(0, 212, 255, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    -webkit-text-fill-color: var(--primary-color);
    animation: pulse 2s infinite;
}

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

.nav-menu a {
    color: var(--light-text);
    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-1);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    animation: zoomIn 20s infinite alternate;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent 70%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.glitch {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    animation: glitch 500ms infinite;
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

.tagline {
    font-size: 1.5rem;
    margin-top: 1rem;
    color: var(--gray-text);
    animation: fadeInUp 1s ease;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat i {
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

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

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title i {
    -webkit-text-fill-color: var(--primary-color);
}

/* Now Playing Section */
.now-playing-section {
    padding: 5rem 0;
    background: var(--darker-bg);
}

.now-playing-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.album-art {
    position: relative;
    width: 300px;
    height: 300px;
    flex-shrink: 0;
}

.vinyl-record {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #1a1a1a 30%, #000 70%);
    border-radius: 50%;
    animation: spin 3s linear infinite;
    animation-play-state: paused;
}

.vinyl-record.playing {
    animation-play-state: running;
}

.vinyl-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.album-art img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.track-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.track-info p {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.5);
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

/* Features Section */
.features {
    padding: 5rem 0;
}

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

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-text);
}

/* Shows Section */
.shows {
    padding: 5rem 0;
    background: var(--darker-bg);
}

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

.show-card {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.show-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.show-card:hover img {
    transform: scale(1.1);
}

.show-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.show-card:hover .show-overlay {
    background: linear-gradient(to top, rgba(255, 107, 53, 0.9), transparent);
}

.show-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.show-overlay p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.show-tag {
    display: inline-block;
    background: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-text);
}

/* Floating Player - Modern Design */
.floating-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(13, 17, 23, 0.95) 0%, rgba(20, 30, 48, 0.95) 100%);
    backdrop-filter: blur(40px) saturate(200%);
    padding: 1.5rem 2rem;
    z-index: 999;
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(0, 212, 255, 0.6), rgba(0, 153, 255, 0.6), rgba(255, 0, 212, 0.6)) 1;
    box-shadow: 0 -12px 50px rgba(0, 212, 255, 0.15), 0 -2px 15px rgba(0, 212, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    animation: slideUp 0.5s ease-out;
}

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

.player-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 150px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.4) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

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

.player-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.player-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.player-album-art {
    position: relative;
    width: 70px;
    height: 70px;
}

.album-art-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.album-art-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.8;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.player-album-art:hover .album-art-wrapper {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.album-art-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-art-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 153, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-album-art:hover .album-art-overlay {
    opacity: 1;
}

.equalizer {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 3px;
    align-items: flex-end;
    height: 24px;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.equalizer.active {
    opacity: 1;
}

.equalizer span {
    width: 3px;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: equalize 0.8s ease-in-out infinite;
}

.equalizer span:nth-child(1) { animation-delay: 0s; }
.equalizer span:nth-child(2) { animation-delay: 0.15s; }
.equalizer span:nth-child(3) { animation-delay: 0.3s; }
.equalizer span:nth-child(4) { animation-delay: 0.45s; }
.equalizer span:nth-child(5) { animation-delay: 0.6s; }

@keyframes equalize {
    0%, 100% { height: 6px; }
    50% { height: 20px; }
}

.player-track {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.player-title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, rgba(255, 0, 212, 0.2), rgba(0, 212, 255, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.5);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #00d4ff;
}

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

.player-title {
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-artist {
    font-size: 0.9rem;
    color: var(--gray-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-center {
    display: flex;
    justify-content: center;
}

.play-btn {
    position: relative;
    width: 68px;
    height: 68px;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-btn:hover::before {
    opacity: 1;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.18);
    box-shadow: 0 15px 45px rgba(0, 212, 255, 0.5), 0 0 70px rgba(0, 212, 255, 0.35);
}

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

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

.play-btn.playing {
    animation: playingPulse 2s ease-in-out infinite;
}

@keyframes playingPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4), 0 0 50px rgba(0, 212, 255, 0.25); }
    50% { box-shadow: 0 15px 45px rgba(0, 212, 255, 0.5), 0 0 70px rgba(0, 212, 255, 0.35); }
}

.player-right {
    display: flex;
    justify-content: flex-end;
}

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

.control-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: rgba(0, 212, 255, 0.08);
    backdrop-filter: blur(15px);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.control-btn:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.volume-btn {
    width: 44px;
    height: 44px;
    font-size: 1rem;
}

.volume-slider-wrapper {
    position: relative;
    width: 120px;
    height: 6px;
}

.volume-slider {
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.15);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.7);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.6);
    transition: all 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.7);
}

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

/* Responsive Design */
@media (min-width: 769px) {
    .volume-slider-wrapper {
        display: block;
    }
}

@media (max-width: 1024px) {
    .player-container {
        gap: 1.5rem;
    }

    .volume-slider-wrapper {
        width: 100px;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .glitch {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .now-playing-card {
        flex-direction: column;
        text-align: center;
    }

    .album-art {
        width: 250px;
        height: 250px;
    }

    .player-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }

    .player-left {
        flex: 1;
        min-width: 0;
        gap: 0.75rem;
    }

    .player-center {
        flex-shrink: 0;
    }

    .player-right {
        flex-shrink: 0;
    }

    .player-track {
        gap: 0.25rem;
    }

    .player-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .volume-control {
        gap: 0.5rem;
    }

    .volume-slider-wrapper {
        width: 80px;
    }

    .play-btn {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }

    .player-album-art {
        width: 60px;
        height: 60px;
    }

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

@media (max-width: 480px) {
    .glitch {
        font-size: 2rem;
    }

    .album-art {
        width: 200px;
        height: 200px;
    }

    .floating-player {
        padding: 0.75rem 1rem;
    }

    .player-container {
        gap: 0.75rem;
    }

    .player-left {
        gap: 0.6rem;
    }

    .player-album-art {
        width: 50px;
        height: 50px;
    }

    .player-track {
        gap: 0.2rem;
    }

    .player-title {
        font-size: 0.85rem;
    }

    .player-artist {
        font-size: 0.7rem;
    }

    .live-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }

    .live-pulse {
        width: 5px;
        height: 5px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .control-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .volume-btn {
        width: 40px;
        height: 40px;
    }

    .volume-slider-wrapper {
        display: none;
    }

    .player-glow {
        display: none;
    }

    .equalizer {
        padding: 3px 5px;
        height: 20px;
    }

    .equalizer span {
        width: 2px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .floating-player {
        padding: 0.5rem 1.5rem;
    }

    .player-album-art {
        width: 45px;
        height: 45px;
    }

    .play-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .control-btn {
        width: 38px;
        height: 38px;
    }
}
