/* Teenz Tunez - Graffiti Style Radio Station */

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

:root {
    --neon-pink: #ff006e;
    --neon-blue: #00f5ff;
    --neon-purple: #8b00ff;
    --neon-green: #39ff14;
    --neon-orange: #ff9500;
    --neon-yellow: #ffff00;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
}

body {
    font-family: 'Righteous', cursive;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    overflow-y: auto;
    line-height: 1.6;
    min-height: 100vh;
}

/* Main Content Container */
#contentContainer {
    position: relative;
    z-index: 1;
    /* No padding needed - sections handle navbar spacing */
}

/* Animated Graffiti Background */
.graffiti-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 70%, rgba(57, 255, 20, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    animation: backgroundPulse 10s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--neon-pink)); }
    50% { filter: drop-shadow(0 0 20px var(--neon-blue)); }
}

.logo-underline {
    height: 3px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    border-radius: 2px;
    animation: underlineExpand 2s ease-in-out infinite;
}

@keyframes underlineExpand {
    0%, 100% { width: 50%; }
    50% { width: 100%; }
}

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

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

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

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--neon-pink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sticky Mini Player */
.sticky-player {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--neon-pink);
    box-shadow: 0 5px 30px rgba(255, 0, 110, 0.4);
    z-index: 999;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
}

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

.sticky-player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sticky-player-artwork {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--neon-pink);
    box-shadow: 0 3px 15px rgba(255, 0, 110, 0.5);
    flex-shrink: 0;
    background: var(--card-bg);
}

.sticky-player-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-player-text {
    flex: 1;
    min-width: 0;
}

.sticky-song-title {
    font-size: 1rem;
    font-weight: bold;
    color: var(--neon-blue);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-song-artist {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sticky-play-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
    flex-shrink: 0;
}

.sticky-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.8);
}

.sticky-play-btn svg {
    width: 22px;
    height: 22px;
    color: white;
}

.sticky-volume-slider {
    width: 100px;
    height: 4px;
    border-radius: 2px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.sticky-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--neon-pink);
    cursor: pointer;
    box-shadow: 0 0 8px var(--neon-pink);
}

.sticky-volume-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--neon-pink);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 8px var(--neon-pink);
}

/* Hero Section */
.hero-section {
    min-height: auto;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: 8rem;
    line-height: 0.9;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 0, 110, 0.8);
    animation: titleGlitch 3s ease-in-out infinite;
    transform: rotate(-2deg);
}

.title-line:nth-child(2) {
    transform: rotate(2deg);
    animation-delay: 0.5s;
}

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

.hero-subtitle {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    color: var(--neon-yellow);
    text-shadow: 0 0 20px var(--neon-yellow);
    margin-bottom: 3rem;
    transform: rotate(-1deg);
}

/* Player Container */
.player-container {
    max-width: 700px;
    margin: 0 auto 4rem;
}

.player-card {
    background: var(--card-bg);
    border: 3px solid var(--neon-pink);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.3),
                inset 0 0 20px rgba(255, 0, 110, 0.1);
    backdrop-filter: blur(10px);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.player-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.player-header {
    margin-bottom: 2rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--neon-pink);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: var(--dark-bg);
    border-radius: 50%;
    animation: livePulse 1s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

.song-info {
    text-align: left;
}

.song-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--neon-blue);
    margin-bottom: 0.5rem;
}

.song-artist {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
}

.play-btn svg {
    width: 35px;
    height: 35px;
    color: white;
}

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

.volume-icon {
    width: 30px;
    height: 30px;
    color: var(--neon-blue);
}

.volume-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-pink);
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-pink);
}

.volume-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-pink);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 10px var(--neon-pink);
}

.listeners {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-green);
    font-weight: bold;
}

.listeners svg {
    width: 25px;
    height: 25px;
}

/* Waveform Animation */
.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 60px;
}

.wave-bar {
    width: 6px;
    background: linear-gradient(to top, var(--neon-pink), var(--neon-blue));
    border-radius: 3px;
    animation: waveAnimation 1s ease-in-out infinite;
}

.wave-bar:nth-child(1) { animation-delay: 0s; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }
.wave-bar:nth-child(6) { animation-delay: 0.5s; }
.wave-bar:nth-child(7) { animation-delay: 0.4s; }
.wave-bar:nth-child(8) { animation-delay: 0.3s; }
.wave-bar:nth-child(9) { animation-delay: 0.2s; }
.wave-bar:nth-child(10) { animation-delay: 0.1s; }
.wave-bar:nth-child(11) { animation-delay: 0s; }
.wave-bar:nth-child(12) { animation-delay: 0.1s; }

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

.waveform.paused .wave-bar {
    animation: none;
    height: 20px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card-bg);
    border: 3px solid var(--neon-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    transform: rotate(-1deg);
}

.feature-card:nth-child(2) {
    transform: rotate(1deg);
    border-color: var(--neon-purple);
}

.feature-card:nth-child(3) {
    transform: rotate(-1deg);
    border-color: var(--neon-green);
}

.feature-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

/* Content Pages */
.content-section {
    min-height: auto;
    padding: 120px 2rem 4rem;
}

/* Add extra padding when sticky player is visible */
.content-section.with-sticky-player {
    padding-top: 200px;
}

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

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-family: 'Bangers', cursive;
    font-size: 5rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    transform: rotate(-2deg);
}

.title-spray {
    height: 5px;
    max-width: 300px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, var(--neon-pink), var(--neon-blue), transparent);
    border-radius: 3px;
}

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

.content-card {
    background: var(--card-bg);
    border: 3px solid var(--neon-pink);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.content-card:nth-child(2n) {
    border-color: var(--neon-blue);
}

.content-card:nth-child(3n) {
    border-color: var(--neon-purple);
}

.content-card:nth-child(4n) {
    border-color: var(--neon-green);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.3);
}

.content-card.full-width {
    grid-column: 1 / -1;
}

.content-card.highlight {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 245, 255, 0.1));
    border: 3px solid var(--neon-yellow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content-card h2 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--neon-pink);
}

.content-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.inline-link {
    color: var(--neon-blue);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason {
    text-align: center;
}

.reason-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.reason p {
    margin: 0;
}

.reason strong {
    color: var(--neon-blue);
    display: block;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 245, 255, 0.1));
    border-radius: 20px;
    border: 3px solid var(--neon-pink);
}

.cta-title {
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.cta-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.8);
}

/* Contact Page */
.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.intro-text {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-form-container {
    position: relative;
}

.contact-form {
    background: var(--card-bg);
    border: 3px solid var(--neon-pink);
    border-radius: 15px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--neon-blue);
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #333;
    border-radius: 8px;
    color: white;
    font-family: 'Righteous', cursive;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(255, 0, 110, 0.8);
}

.form-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--card-bg);
    border: 3px solid var(--neon-green);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.5);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-family: 'Bangers', cursive;
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

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

.info-card {
    background: var(--card-bg);
    border: 3px solid var(--neon-blue);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 30px rgba(0, 245, 255, 0.3);
}

.info-card.highlight {
    border-color: var(--neon-yellow);
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 255, 0, 0.1));
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.info-card h3 {
    font-family: 'Bangers', cursive;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.info-detail {
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 110, 0.2);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    color: var(--neon-pink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--neon-pink);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

/* Quick Links */
.quick-links {
    text-align: center;
    padding: 2rem;
}

.quick-links h2 {
    font-family: 'Bangers', cursive;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-link {
    padding: 1rem 2rem;
    background: var(--card-bg);
    border: 3px solid var(--neon-purple);
    border-radius: 15px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: var(--neon-purple);
    color: var(--dark-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(139, 0, 255, 0.5);
}

/* Footer */
.footer {
    background: rgba(26, 26, 26, 0.95);
    border-top: 3px solid var(--neon-pink);
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--neon-blue);
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 0 20px var(--neon-blue);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        border-bottom: 3px solid var(--neon-pink);
    }

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

    .hamburger {
        display: flex;
    }

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

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

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

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

    /* Sticky player mobile adjustments */
    .sticky-player {
        padding: 0.6rem 1rem;
    }

    .sticky-player-content {
        gap: 1rem;
    }

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

    .sticky-song-title {
        font-size: 0.9rem;
    }

    .sticky-song-artist {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .player-card {
        padding: 1.5rem;
    }

    .player-controls {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .volume-control {
        width: 100%;
    }
}


/* Chat Page Iframe */
.chat-page-section {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    padding-top: 80px; /* Account for navbar on desktop */
}

.chat-iframe-container {
    width: 100%;
    height: 100vh;
    position: relative;
    padding-top: 80px; /* Account for fixed navbar */
    box-sizing: border-box;
}

.chat-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Adjust for sticky player */
.with-sticky-player .chat-iframe-container {
    padding-top: 100px; /* Only Sticky Player (100px) - navbar hidden on mobile */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .chat-page-section {
        padding: 0 !important;
        margin: 0 !important;
        height: 100vh;
        height: -webkit-fill-available;
        position: fixed;
        top: 0 !important;
        left: 0;
        right: 0;
        bottom: 0;
    }
    
    .chat-iframe-container {
        padding: 0 !important;
        margin: 0 !important;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0 !important;
        left: 0;
        right: 0;
        bottom: 0 !important;
    }
    
    .with-sticky-player .chat-page-section {
        top: 0 !important;
    }
    
    .with-sticky-player .chat-iframe-container {
        top: 100px !important; /* Start iframe below sticky player */
        height: calc(100% - 100px) !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .chat-iframe-container iframe {
        overflow: hidden;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border: none;
        margin: 0;
        padding: 0;
    }
    
    /* Sticky player positioning on mobile (non-chat pages) */
    #stickyPlayer {
        position: fixed;
        z-index: 500; /* Lower than navbar (1000) */
    }
}
