/* MUZ11 Custom Styles */

:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --text: #333;
    --muted-text: #666;
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --border-color: #e0e0e0;
    --playlist-bg: #ffffff;
    --playlist-item-hover: #f8f9fa;
    --playlist-item-active: #e7f3ff;
}

[data-theme="dark"] {
    --text: #e0e0e0;
    --muted-text: #a0a0a0;
    --bg-primary: #1a1a2e;
    --bg-secondary: #252540;
    --bg-card: #2a2a4a;
    --border-color: #3a3a5a;
    --playlist-bg: #252540;
    --playlist-item-hover: #2a2a4a;
    --playlist-item-active: #2d3561;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg-primary);
    color: var(--text);
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

/* App Layout */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    transition: padding-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-content.with-mini-player {
    padding-bottom: 80px;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.navbar-brand .brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
}

.navbar-brand .volume {
    color: #ffd700;
}

.navbar-brand .domain {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-left: 2px;
}

.navbar-nav {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    gap: 1.5rem;
}

.navbar-toggler {
    display: none;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-only-links {
    display: none;
}

.theme-toggle {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle:hover {
    background: rgba(255,255,255,0.3);
}

.nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-link:hover {
    color: white !important;
}

/* Home Page */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.hero .volume {
    color: #ffd700;
}

.hero .tagline {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 1rem auto;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.features {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.how-it-works {
    padding: 80px 20px;
    background: var(--bg-primary);
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

/* Player */
.player-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    min-height: 400px;
}

.loading p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--text);
}

.youtube-player {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.player-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

.player-main {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.now-playing {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.now-playing h5 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.now-playing h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.now-playing p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.now-playing small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.video-wrapper > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-wrapper.video-hidden {
    padding-bottom: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}

.controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.5rem;
}

.controls button {
    min-width: 120px;
    flex: 0 1 auto;
}

.controls button.btn-compact {
    min-width: 90px;
    padding: 0.375rem 0.5rem;
}

.playlist-sidebar {
    width: 100%;
    box-sizing: border-box;
}

.playlist-sidebar h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text);
}

.playlist-items {
    max-height: 640px;
    overflow-y: auto;
    background: var(--playlist-bg);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
}

.playlist-item {
    display: flex;
    align-items: center;
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
    gap: 1rem;
}

.playlist-item:hover {
    background: var(--playlist-item-hover);
}

.playlist-item.active {
    background: var(--playlist-item-active);
    font-weight: 600;
}

.rank-badge {
    width: 35px;
    height: 35px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.song-info {
    flex: 1;
    min-width: 0;
}

.song-title {
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.song-artist {
    color: var(--muted-text);
}

/* Auth Pages */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-card {
    max-width: 400px;
    width: 100%;
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
}

/* Pricing */
.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--muted-text);
}

.pricing-card .features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card .features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Browse */
.browse-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.playlist-card {
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.playlist-card:hover {
    transform: translateY(-5px);
}

.playlist-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.playlist-image.placeholder {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.playlist-info {
    padding: 1.5rem;
}

.playlist-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.playlist-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer .theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .player-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .player-page {
        padding: 0.75rem;
    }

    .playlist-sidebar {
        position: static;
    }

    .playlist-items {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .navbar {
        padding: 1rem;
    }

    .navbar .container-fluid {
        flex-wrap: wrap;
    }

    .navbar-toggler {
        display: block;
    }

    .navbar-nav {
        display: none;
        flex-direction: column !important;
        width: 100%;
        gap: 0;
        margin-top: 1rem;
        background: rgba(0,0,0,0.2);
        border-radius: 8px;
        padding: 1rem;
    }

    .navbar-nav.show {
        display: flex;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .mobile-only-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .mobile-only-links .btn {
        width: 100%;
    }

    .player-page {
        padding: 0.5rem;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .player-main {
        padding: 0;
        max-width: 100%;
    }

    .navbar {
        padding: 0.75rem 1rem;
    }

    .player-layout {
        gap: 1rem;
    }

    .now-playing {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .now-playing h3 {
        font-size: 1.1rem;
    }

    .video-wrapper {
        border-radius: 8px;
        margin-bottom: 1rem;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }

    .controls {
        gap: 0.4rem;
        margin-top: 1rem;
        justify-content: center;
        padding: 0 0.5rem;
    }

    .controls button {
        min-width: 68px;
        padding: 0.5rem 0.5rem;
        font-size: 0.85rem;
        flex: 0 0 auto;
    }

    .controls button.btn-compact {
        min-width: 56px;
        padding: 0.4rem 0.4rem;
        font-size: 0.8rem;
    }

    .controls button span {
        display: none;
    }

    .playlist-items {
        padding: 0.75rem;
        max-height: 400px;
    }

    .playlist-item {
        padding: 10px;
        gap: 0.75rem;
    }

    .rank-badge {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .player-page {
        padding: 0.25rem;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .player-main {
        max-width: 100%;
    }

    .navbar {
        padding: 0.5rem 0.75rem;
    }

    .navbar-brand .brand {
        font-size: 1.4rem;
    }

    .navbar-brand .domain {
        font-size: 0.85rem;
    }

    .now-playing {
        padding: 0.5rem 0.75rem;
        max-width: 100%;
    }

    .now-playing h3 {
        font-size: 1rem;
    }

    .now-playing p {
        font-size: 0.85rem;
    }

    .video-wrapper {
        max-width: 100%;
    }

    .controls {
        justify-content: center;
        gap: 0.35rem;
        padding: 0 0.25rem;
    }

    .controls button {
        min-width: 62px;
        padding: 0.4rem 0.45rem;
        font-size: 0.8rem;
        flex: 0 0 auto;
    }

    .controls button.btn-compact {
        min-width: 52px;
        padding: 0.35rem 0.35rem;
        font-size: 0.75rem;
    }

    .playlist-items {
        padding: 0.5rem;
    }

    .playlist-item {
        padding: 8px;
    }

    .rank-badge {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .song-title {
        font-size: 0.9rem;
    }

    .song-artist {
        font-size: 0.8rem;
    }
}

/* Waiting List Page */
.waitlist-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow-x: hidden;
}

.waitlist-hero {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
    max-width: 800px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.waitlist-hero.fade-in {
    opacity: 1;
}

.icon-wrapper {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.icon-wrapper.scale-in {
    transform: scale(1);
}

.waitlist-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.6s ease 0.2s;
}

.waitlist-hero h1.slide-in-left {
    transform: translateX(0);
    opacity: 1;
}

.waitlist-hero .highlight {
    background: linear-gradient(120deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-hero .lead {
    font-size: 1.25rem;
    opacity: 0.95;
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.6s ease 0.4s;
}

.waitlist-hero .lead.slide-in-right {
    transform: translateX(0);
    opacity: 0.95;
}

.waitlist-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.waitlist-card.slide-up {
    transform: translateY(0);
    opacity: 1;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h2 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.waitlist-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.form-control-lg {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.features-preview {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.features-preview h4 {
    color: #374151;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.5s ease;
}

.features-list li.slide-in-left {
    transform: translateX(0);
    opacity: 1;
}

.features-list li.delay-1 {
    transition-delay: 0.6s;
}

.features-list li.delay-2 {
    transition-delay: 0.7s;
}

.features-list li.delay-3 {
    transition-delay: 0.8s;
}

.features-list li.delay-4 {
    transition-delay: 0.9s;
}

.features-list li i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    min-width: 30px;
}

.features-list li span {
    color: #374151;
    font-weight: 500;
}

.success-message {
    text-align: center;
    padding: 2rem;
    animation: fadeIn 0.6s ease;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message h3 {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-message p {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .waitlist-hero h1 {
        font-size: 2rem;
    }

    .waitlist-hero .lead {
        font-size: 1rem;
    }

    .icon-wrapper {
        font-size: 3rem;
    }

    .waitlist-card {
        padding: 2rem 1.5rem;
    }

    .card-header h2 {
        font-size: 1.5rem;
    }

    .features-list li {
        padding: 0.75rem;
    }

    .features-list li i {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
}

@media (max-width: 480px) {
    .waitlist-container {
        padding: 1rem 0.5rem;
    }

    .waitlist-hero h1 {
        font-size: 1.75rem;
    }

    .waitlist-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .card-header h2 {
        font-size: 1.25rem;
    }

    .success-icon {
        font-size: 4rem;
    }
}

/* About & Contact Pages */
.about-container,
.contact-container {
    min-height: 100vh;
    padding: 4rem 1rem 2rem;
    background: var(--background);
}

.hero-section {
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.content-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.story-text,
.philosophy-text,
.how-it-works-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text);
    font-size: 1.05rem;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.creator-section {
    margin: 3rem 0;
}

.creator-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.cta-section {
    margin-top: 4rem;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.cta-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: var(--secondary);
}

.launch-note {
    margin-top: 2rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Contact Page Specific */
.contact-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary);
    gap: 0.75rem;
}

.info-section {
    margin: 3rem 0;
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
}

.response-section {
    margin: 2rem 0;
}

.response-section .alert {
    border-radius: 12px;
    padding: 1.25rem;
}

.social-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
}

.social-section h3 {
    color: var(--text);
    font-weight: 700;
}

.social-section p {
    color: var(--text);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .creator-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .cta-card {
        padding: 2rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-container,
    .contact-container {
        padding: 2rem 0.5rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .content-card {
        padding: 1.25rem;
    }

    .cta-card {
        padding: 1.5rem;
    }
}

/* Persistent Player Wrapper */
.persistent-player-wrapper {
    position: fixed;
    pointer-events: auto;
}

/* When NOT on player page - hide off-screen but keep player alive */
.persistent-player-wrapper.off-player-page {
    top: -9999px;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -9999;
    pointer-events: none;
}

/* When ON player page - use fixed positioning to overlay on the video wrapper area */
.player-page .persistent-player-wrapper.on-player-page {
    position: fixed !important;
    /* Position will be calculated to match video-wrapper position */
    pointer-events: auto !important;
}

.player-page .persistent-player-wrapper.on-player-page > div {
    width: 100% !important;
    height: 100% !important;
}

.player-page .persistent-player-wrapper.on-player-page iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Video wrapper needs to be positioned relative */
.player-page .video-wrapper {
    position: relative;
}

/* Mini Player */
.mini-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    height: 80px;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-player.visible {
    transform: translateY(0);
    opacity: 1;
}

.mini-player-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 100%;
    gap: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

.mini-player-content:hover {
    background: var(--playlist-item-hover);
}

.song-info-mini {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 0;
}

.album-art-mini {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.track-details {
    min-width: 0;
    flex: 1;
}

.track-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 0.25rem;
}

.track-artist {
    font-size: 0.85rem;
    color: var(--muted-text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-controls-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.control-btn:hover {
    background: var(--playlist-item-hover);
    transform: scale(1.05);
}

.control-btn-play {
    background: var(--primary);
    color: white;
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
}

.control-btn-play:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

.player-actions-mini {
    display: flex;
    align-items: center;
}

.hidden-player {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Player Active Message */
.player-active-message {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem;
    animation: fadeInUp 0.6s ease;
}

.message-content {
    text-align: center;
    max-width: 600px;
}

.message-content i {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.message-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.message-content p {
    font-size: 1.2rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Responsive Mini Player */
@media (max-width: 768px) {
    .mini-player-content {
        padding: 0 1rem;
        gap: 1rem;
    }

    .track-title {
        font-size: 0.9rem;
    }

    .track-artist {
        font-size: 0.8rem;
    }

    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .control-btn-play {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }

    .message-content i {
        font-size: 3.5rem;
    }

    .message-content h3 {
        font-size: 1.5rem;
    }

    .message-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mini-player {
        height: 70px;
    }

    .main-content.with-mini-player {
        padding-bottom: 70px;
    }

    .mini-player-content {
        padding: 0 0.75rem;
        gap: 0.75rem;
    }

    .album-art-mini {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .song-info-mini {
        gap: 0.75rem;
    }

    .track-title {
        font-size: 0.85rem;
    }

    .track-artist {
        font-size: 0.75rem;
    }

    .player-controls-mini {
        gap: 0.5rem;
    }

    .control-btn {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .control-btn-play {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .message-content i {
        font-size: 3rem;
    }

    .message-content h3 {
        font-size: 1.25rem;
    }
}
