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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #581c87 50%, #0f172a 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: white;
    padding: 2px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: white;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-icon span {
    width: 24px;
    height: 2px;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    margin-top: 0.5rem;
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
    font-weight: 500;
}

.nav-link-mobile:hover {
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 64rem;
}

.hero-icon {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
    overflow: hidden;
    background: white;
    padding: 8px;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #a78bfa;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.gradient-text {
    background: linear-gradient(135deg, #a78bfa, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(0);
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.btn-secondary {
    border: 2px solid #14b8a6;
    color: #5eead4;
    background: transparent;
}

.btn-secondary:hover {
    background: #14b8a6;
    color: white;
}

.btn-spotify {
    background: #1db954;
    color: white;
}

.btn-spotify:hover {
    background: #1ed760;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Spotify Section */
.spotify-section {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.spotify-text {
    color: #1db954;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 32rem;
    margin: 0 auto;
}

.spotify-content {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    display: grid;
    gap: 3rem;
}

.spotify-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.spotify-icon {
    width: 3rem;
    height: 3rem;
    background: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.spotify-badge span {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.spotify-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.spotify-description {
    color: #d1d5db;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.spotify-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #5eead4;
    border-radius: 50%;
}

.feature span {
    color: #d1d5db;
}

.spotify-embed {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(100, 116, 139, 0.5);
}

.spotify-embed iframe {
    border-radius: 0.75rem;
}

/* Episodes Section */
.episodes-section {
    padding: 5rem 1rem;
}

.episodes-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.episode-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(71, 85, 105, 0.5);
    transition: all 0.3s ease;
}

.episode-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.episode-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.episode-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.episode-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
}

.play-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #8b5cf6;
    transform: scale(1.1);
}

.episode-content {
    padding: 1.5rem;
}

.episode-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.episode-card:hover .episode-title {
    color: #a78bfa;
}

.episode-description {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.episode-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #9ca3af;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 1rem;
}

.newsletter-content {
    max-width: 64rem;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(20, 184, 166, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.newsletter-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
    margin: 0 auto 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(100, 116, 139, 1);
    border-radius: 9999px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.newsletter-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #10b981;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-success.active {
    display: flex;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(71, 85, 105, 0.5);
    padding: 3rem 1rem 2rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(30, 41, 59, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #8b5cf6, #14b8a6);
    color: white;
    transform: scale(1.1);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(71, 85, 105, 0.5);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .newsletter-input {
        flex: 1;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .spotify-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .episodes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}