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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f8fafc;
    background: linear-gradient(135deg, #0f0b1a 0%, #1a0f2e 50%, #2d1b4e 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 11, 26, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-icon {
    font-size: 2rem;
    filter: brightness(1.2);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: brightness(1.2);
}

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

.navigation a {
    color: #c7d2fe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #8b5cf6;
}

.twitter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    border-radius: 50%;
    color: white !important;
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

.twitter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
    color: white !important;
}

.twitter-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #c7d2fe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.twitter-link:hover {
    color: #1da1f2;
}

.twitter-link-header {
    color: #c7d2fe;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.twitter-link-header:hover {
    color: #1da1f2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.hero-buttons .btn,
.hero-buttons .download-btn {
    height: 60px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 12px !important;
    padding: 0 !important;
    font-size: 1rem;
    font-weight: 600;
}

.hero-buttons .btn-secondary {
    background: rgba(248, 250, 252, 0.1);
    color: #f8fafc;
    border: 1px solid rgba(199, 210, 254, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(248, 250, 252, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    filter: brightness(0.9);
}



.download-btn {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
    height: 60px;
    width: 180px;
}

.download-btn:hover {
    transform: none;
}

.download-btn img {
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    box-sizing: border-box;
}

.app-store-badge {
    display: flex;
    align-items: center;
    background: #000;
    border-radius: 12px;
    padding: 8px 16px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(199, 210, 254, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-store-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.app-store-icon svg {
    width: 24px;
    height: 24px;
}

.app-store-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-family: 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

.app-store-download {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.app-store-store {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.download-btn.app-store-custom {
    text-decoration: none !important;
}

.download-btn.app-store-custom:hover .app-store-badge {
    background: #333;
    transform: translateY(-2px);
}

.download-btn.app-store-custom:hover,
.download-btn.app-store-custom:focus,
.download-btn.app-store-custom:active {
    text-decoration: none !important;
    outline: none;
}



.google-play-badge {
    display: flex;
    align-items: center;
    background: #000;
    border-radius: 12px;
    padding: 8px 16px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(199, 210, 254, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.google-play-icon svg {
    width: 24px;
    height: 24px;
}

.google-play-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    font-family: 'Roboto', sans-serif;
}

.google-play-get {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}

.google-play-store {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
}

.download-btn.google-play-custom {
    text-decoration: none !important;
}

.download-btn.google-play-custom:hover .google-play-badge {
    background: #333;
    transform: translateY(-2px);
}

.download-btn.google-play-custom:hover,
.download-btn.google-play-custom:focus,
.download-btn.google-play-custom:active {
    text-decoration: none !important;
    outline: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background: rgba(248, 250, 252, 0.1);
    color: #f8fafc;
    border: 1px solid rgba(199, 210, 254, 0.2);
}

.btn-secondary:hover {
    background: rgba(248, 250, 252, 0.2);
    transform: translateY(-1px);
}

/* Awards Section */
.awards {
    padding: 6rem 0;
    background: rgba(15, 11, 26, 0.8);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.award-badge {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
}

.badge-text {
    font-weight: 600;
    color: #f8fafc;
    font-size: 1.1rem;
}

.badge-subtext {
    color: #c7d2fe;
    font-size: 0.9rem;
}

.stats {
    text-align: center;
    padding: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
}

.rating-text {
    color: #c7d2fe;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: rgba(26, 22, 37, 0.8);
}

.about-content {
    text-align: center;
}

.about h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f8fafc;
    line-height: 1.3;
}

.highlight {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.content-card {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.card-image {
    margin-bottom: 1.5rem;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    filter: brightness(0.9);
}

.content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.content-card p {
    color: #c7d2fe;
    line-height: 1.6;
}

/* Popular Content Section */
.popular-content {
    padding: 8rem 0;
    background: rgba(15, 11, 26, 0.8);
}

.popular-content h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.3;
}

.popular-content p {
    text-align: center;
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 4rem;
}

.content-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.content-grid-large .content-card {
    padding: 1.5rem;
}

.content-grid-large .card-image img {
    height: 180px;
}

.duration {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
}

/* Podcasts Section */
.podcasts {
    padding: 8rem 0;
    background: rgba(26, 22, 37, 0.8);
}

.podcasts h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.3;
}

.podcasts > .container > p {
    text-align: center;
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 4rem;
}

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

.podcast-card {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.podcast-image img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.podcast-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #f8fafc;
}

.podcast-content p {
    color: #c7d2fe;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.episode-count {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 8rem 0;
    background: rgba(15, 11, 26, 0.8);
}

.reviews h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.3;
}

.reviews > .container > p {
    text-align: center;
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 4rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

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

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(139, 92, 246, 0.3);
}

.reviewer-details h4 {
    color: #f8fafc;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.reviewer-details .stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.review-card p {
    color: #c7d2fe;
    line-height: 1.6;
    font-style: italic;
}

/* Mixer Section */
.mixer {
    padding: 8rem 0;
    background: rgba(26, 22, 37, 0.8);
}

.mixer-content {
    text-align: center;
}

.mixer h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.3;
}

.mixer p {
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.mixer-item {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

.mixer-item:hover {
    transform: translateY(-3px);
}

.mixer-icon {
    margin-bottom: 1rem;
    color: #8b5cf6;
}

.mixer-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f8fafc;
}

.volume-slider {
    width: 100%;
}

.volume-slider input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    outline: none;
    appearance: none;
}

.volume-slider input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #8b5cf6;
    border-radius: 50%;
    cursor: pointer;
}

/* Statistics Section */
.statistics {
    padding: 8rem 0;
    background: rgba(15, 11, 26, 0.8);
}

.statistics h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f8fafc;
}

.statistics p {
    text-align: center;
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 4rem;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    word-break: break-word;
}

.stat-label {
    color: #c7d2fe;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: rgba(26, 22, 37, 0.8);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.3;
}

.cta p {
    font-size: 1.25rem;
    color: #c7d2fe;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.cta-download-buttons .download-btn {
    height: 60px;
    width: 180px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.cta-download-buttons .app-store-badge,
.cta-download-buttons .google-play-badge {
    display: flex;
    align-items: center;
    background: #000;
    border-radius: 12px;
    padding: 8px 16px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(199, 210, 254, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-download-buttons .download-btn:hover {
    transform: translateY(-2px);
}

.cta-download-buttons .download-btn:hover .app-store-badge,
.cta-download-buttons .download-btn:hover .google-play-badge {
    background: #333;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: rgba(15, 11, 26, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #c7d2fe;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-section h3 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: #c7d2fe;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8b5cf6;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: #c7d2fe;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .podcast-card {
        flex-direction: column;
        text-align: center;
    }
    
    .podcast-image img {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .navigation {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn,
    .hero-buttons .download-btn {
        width: 150px;
        height: 50px;
        border-radius: 8px !important;
    }
    


    .download-btn img {
        height: 50px;
    }

    .download-btn.google-play img {
        height: 50px;
    }
    
    .google-play-badge {
        height: 50px;
        width: 150px;
        padding: 6px 12px;
    }
    
    .google-play-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .google-play-get {
        font-size: 9px;
    }
    
    .google-play-store {
        font-size: 16px;
    }
    
    .about h2,
    .mixer h2,
    .statistics h2,
    .cta h2,
    .popular-content h2,
    .podcasts h2,
    .reviews h2 {
        font-size: 2rem;
    }
    
    .cta-download-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-download-buttons .download-btn {
        width: 150px;
        height: 50px;
    }
    
    .content-grid,
    .content-grid-large,
    .mixer-grid,
    .podcast-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for stats */
.stat-number {
    transition: all 0.3s ease;
}

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

.content-card,
.mixer-item,
.stat-item,
.podcast-card,
.review-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 11, 26, 0.5);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
} 