l/* VoidPlayer Landing Page Styles */

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

/* Legal Pages Styles */
.legal-content {
    padding: 100px 0;
    min-height: 80vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #1DB954;
    margin-bottom: 10px;
}

.last-updated {
    opacity: 0.7;
    font-size: 1rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #1DB954;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-section h3 {
    color: #1ed760;
    font-size: 1.25rem;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 600;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    opacity: 0.9;
}

.legal-section strong {
    color: #1DB954;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #1DB954;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info strong {
    color: #1DB954;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    min-height: 100vh;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #1DB954;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav .cta-button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    font-size: 14px;
}

nav .cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: none;
    box-shadow: none;
}

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

.nav-link:hover {
    color: #1DB954;
}

/* Button Styles */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-button.primary {
    background: #1DB954;
    color: white;
}

.cta-button.primary:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 185, 84, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #1DB954;
    border: 2px solid #1DB954;
}

.cta-button.secondary:hover {
    background: #1DB954;
    color: white;
}

.cta-button.tertiary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.tertiary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

.playstore-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.playstore-icon {
    font-size: 18px;
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Main Content */
main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    padding: 40px 0 80px 0;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #1DB954, #1ed760);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-tag.no {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Player Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-block-start: 26px;
}

.player-mockup {
    background: #121212;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.mockup-header {
    background: #000000;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: #1DB954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.logo-text {
    font-weight: 600;
    color: #1DB954;
    font-size: 18px;
}

.mockup-user {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(45deg, #1DB954, #1ed760);
    border-radius: 50%;
}

.mockup-nav {
    background: #121212;
    padding: 15px 20px;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.nav-item.active {
    background: #1DB954;
    opacity: 1;
    color: white;
}

.nav-item:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

.nav-icon {
    font-size: 16px;
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
}

.mockup-content {
    background: #121212;
    padding: 20px;
    height: 350px;
    overflow-y: auto;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.search-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    color: white;
    font-size: 14px;
    flex: 1;
    max-width: 200px;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    opacity: 0.8;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
}

.playlists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.playlist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.playlist-cover {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.playlist-cover-1 {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.playlist-cover-2 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.playlist-cover-3 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.playlist-cover-4 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

.playlist-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.2;
}

.playlist-tracks {
    font-size: 12px;
    opacity: 0.7;
}

.mockup-player {
    background: #000000;
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.player-track-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.track-cover {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #1DB954, #1ed760);
    border-radius: 4px;
}

.track-details {
    flex: 1;
    min-width: 0;
}

.track-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 11px;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.control-btn {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.control-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.play-btn {
    background: #1DB954;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.play-btn:hover {
    background: #1ed760;
    transform: scale(1.05);
}

.player-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
}

.time-current,
.time-total {
    opacity: 0.7;
    min-width: 30px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #1DB954;
    border-radius: 2px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% { width: 0%; }
    50% { width: 30%; }
    100% { width: 0%; }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1DB954;
}

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

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1DB954;
}

.feature p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Requirements Section */
.requirements {
    padding: 100px 0;
}

.requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1DB954;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-icon {
    margin-bottom: 20px;
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
}

.requirement-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1DB954;
}

.requirement-details h4 {
    color: #1DB954;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.requirement-details ul {
    list-style: none;
    margin-bottom: 20px;
}

.requirement-details li {
    padding: 8px 0;
    opacity: 0.9;
}

.requirement-details .note {
    background: rgba(29, 185, 84, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #1DB954;
}

.requirement-details .note a {
    color: #1DB954;
    text-decoration: none;
    font-weight: 600;
}

.requirement-details .note a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1DB954;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h4 {
    color: #1DB954;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #1DB954;
}

.footer-section p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.5 !important;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        gap: 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .player-mockup {
        transform: scale(0.85);
        max-width: 90vw;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .mockup-content {
        height: 250px;
    }
    
    .mockup-sidebar {
        width: 100px;
        padding: 15px 10px;
    }
    
    .sidebar-item {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .features,
    .requirements,
    .cta-section {
        padding: 60px 0;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

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

.hero-content,
.feature,
.requirement-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .feature {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .feature.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
