/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #533483 75%, #7209b7 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(114, 9, 183, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: #a855f7;
    font-size: 2rem;
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #a855f7;
    border-radius: 1px;
}

.user-actions {
    display: flex;
    gap: 1rem;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: #ffffff;
    border: 2px solid #a855f7;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.btn-primary i {
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(168, 85, 247, 0.5);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.8);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    min-height: 60vh;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, #e879f9, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Badges */
.features-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.badge i {
    color: #a855f7;
    font-size: 0.8rem;
}

/* Download Section Styles */
.download-section {
    margin-top: 2rem;
    text-align: center;
}

.download-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #a855f7;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
    flex: 1;
    max-width: 200px;
}

.download-btn i {
    font-size: 1.5rem;
}

.windows-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    border: 2px solid #8b5cf6;
}

.windows-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.linux-btn {
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: white;
    border: 2px solid #a855f7;
}

.linux-btn:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.mac-btn {
    background: linear-gradient(135deg, #6b21a8, #581c87);
    color: white;
    border: 2px solid #6b21a8;
}

.mac-btn:hover {
    background: linear-gradient(135deg, #581c87, #4c1d95);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(107, 33, 168, 0.4);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.music-visualizer {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 200px;
}

.bar {
    width: 20px;
    background: linear-gradient(to top, #a855f7, #e879f9);
    border-radius: 10px;
    animation: musicWave 1.5s ease-in-out infinite;
}

.bar:nth-child(1) { height: 60px; animation-delay: 0s; }
.bar:nth-child(2) { height: 120px; animation-delay: 0.2s; }
.bar:nth-child(3) { height: 80px; animation-delay: 0.4s; }
.bar:nth-child(4) { height: 160px; animation-delay: 0.6s; }
.bar:nth-child(5) { height: 100px; animation-delay: 0.8s; }

@keyframes musicWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Features Section */
.features-section {
    margin-bottom: 4rem;
    text-align: center;
}

.features-header {
    margin-bottom: 3rem;
}

.features-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #a855f7, #e879f9, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(168, 85, 247, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #e879f9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.4);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.8;
    color: #ffffff;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 4rem;
    text-align: center;
}

.comparison-header {
    margin-bottom: 3rem;
}

.comparison-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.comparison-header h3 .highlight {
    background: linear-gradient(45deg, #a855f7, #e879f9, #f0abfc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #ffffff;
}

.comparison-table-container {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(168, 85, 247, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    padding: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.comparison-table th {
    background: rgba(168, 85, 247, 0.15);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 2px solid rgba(168, 85, 247, 0.3);
}

.comparison-table th:first-child {
    text-align: left;
    background: rgba(168, 85, 247, 0.2);
}

.comparison-table .aurora-column {
    background: rgba(168, 85, 247, 0.25) !important;
    color: #a855f7 !important;
    font-weight: 700;
}

.comparison-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    font-size: 1rem;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: rgba(168, 85, 247, 0.05);
}

.comparison-table .aurora-column {
    background: rgba(168, 85, 247, 0.1) !important;
    color: #a855f7 !important;
    font-weight: 600;
}

.comparison-table .fas.fa-check {
    color: #10b981;
    font-size: 1.2rem;
}

.comparison-table .fas.fa-times {
    color: #ef4444;
    font-size: 1.2rem;
}

.comparison-table .free-text {
    color: #a855f7;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(168, 85, 247, 0.05);
}

.comparison-table tbody tr:hover .aurora-column {
    background: rgba(168, 85, 247, 0.15) !important;
}

/* Player Section */
.player-section {
    background: rgba(168, 85, 247, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.player-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.now-playing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.track-cover {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #a855f7, #e879f9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.track-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.track-details p {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.control-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: #ffffff;
    font-size: 1.5rem;
}

.play-btn:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

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

#volume-slider {
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    appearance: none;
    width: 16px;
    height: 16px;
    background: #a855f7;
    border-radius: 50%;
    cursor: pointer;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #e879f9);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s ease;
}

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 16px;
    height: 16px;
    background: #a855f7;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.progress-bar:hover .progress-handle {
    opacity: 1;
}

#current-time,
#duration {
    font-size: 0.9rem;
    opacity: 0.8;
    min-width: 40px;
    text-align: center;
}

/* App Preview Section */
.app-preview-section {
    margin-bottom: 4rem;
    text-align: center;
}

.preview-header {
    margin-bottom: 3rem;
}

.preview-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.preview-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.app-preview-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2rem;
    margin: 0 auto 3rem;
    max-width: 500px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.app-preview-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
}

.room-id {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Courier New', monospace;
}

.track-info-preview {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.album-art {
    flex-shrink: 0;
}

.sync-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sync-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

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

.sync-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

.track-details-preview {
    flex: 1;
    text-align: left;
}

.track-details-preview h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.track-details-preview p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-preview {
    margin-bottom: 1.5rem;
}

.progress-bar-preview {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    position: relative;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
    border-radius: 3px;
    position: relative;
}

.progress-handle-preview {
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(50%, -50%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.duration-preview {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    float: right;
}

.controls-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.control-preview {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-preview {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    font-size: 1.5rem;
}

.control-preview:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.play-preview:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.user-controls {
    display: flex;
    gap: 0.75rem;
}

.user-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.you-btn {
    background: #fbbf24;
    color: #000;
}

.guest-btn {
    background: #10b981;
    color: #ffffff;
}

.add-btn {
    background: #6b7280;
    color: #ffffff;
}

.user-btn:hover {
    transform: scale(1.05);
}

.user-letter {
    font-weight: 700;
    font-size: 1rem;
}

.user-label {
    font-size: 0.7rem;
    margin-top: 0.1rem;
}

.audio-controls-preview {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.audio-control {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #a855f7, #9333ea);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.cta-button:hover {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(168, 85, 247, 0.6);
}

.cta-button i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffd700;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .nav {
        gap: 1rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .features-badges {
        gap: 0.5rem;
    }
    
    .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .download-btn {
        min-width: 250px;
        width: 100%;
        max-width: 300px;
    }

    .now-playing {
        flex-direction: column;
        gap: 1rem;
    }

    .player-controls {
        order: -1;
    }

    .main-content {
        padding: 1rem;
    }

    .features-header h3 {
        font-size: 2rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .comparison-header h3 {
        font-size: 2rem;
    }
    
    .comparison-header p {
        font-size: 1rem;
    }
    
    .comparison-table-container {
        padding: 1rem;
        overflow-x: scroll;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .preview-header h3 {
        font-size: 2rem;
    }
    
    .preview-header p {
        font-size: 1rem;
    }
    
    .app-preview-card {
        padding: 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .track-info-preview {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .track-details-preview {
        text-align: center;
    }
    
    .controls-preview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .user-controls {
        justify-content: center;
    }
    
    .audio-controls-preview {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .track-item {
        padding: 0.75rem;
    }

    .track-info-small h5 {
        font-size: 0.9rem;
    }

    .track-info-small p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .music-visualizer {
        height: 150px;
    }

    .bar {
        width: 15px;
    }

    .player-section {
        padding: 1rem;
    }

    .track-item {
        gap: 0.5rem;
    }

    .track-cover-small {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}
