/* Aether FM - Landing Page Styles */

:root {
    --primary-color: #e91e63;
    --secondary-color: #9c27b0;
    --dark-bg: #1a1a1a;
    --light-bg: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent: #00bcd4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 100%);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    padding: 3rem 0;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 3rem;
}

.logo h1 {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 3rem 0;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.lead {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 3rem 0;
    margin: 3rem 0;
}

.player-preview {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--primary-color);
}

.now-playing {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 2rem;
    font-weight: 600;
}

.controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.info {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Tech Stack */
.tech-stack {
    margin: 4rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.tech-stack h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.tech-stack p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

details {
    margin-top: 1rem;
}

summary {
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.5rem 0;
}

summary:hover {
    color: var(--accent);
}

details ul {
    margin-top: 1rem;
    margin-left: 2rem;
    color: var(--text-secondary);
}

details li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--light-bg);
    color: var(--text-secondary);
}

footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 0.3rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .controls {
        flex-direction: column;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
