/* Base Styles */
:root {
    --primary: #2272FF;
    --accent: #0C1147;
    --text: #FCFFF0;
    --gray-text: #666;
    --light-bg: #2272FF;
    --white: #FCFFF0;
    --gradient: linear-gradient(135deg, #2272FF 0%, #0C1147 100%);
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
    --accent-green: #9CFF00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background-color: var(--primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: 0.05em;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    color: var(--white);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    padding: 3rem 0;
    margin-bottom: 2rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 3px 0;
    /* background-color: rgba(34, 114, 255, .85); */
    background-color: var(--primary);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    position: relative;
}

.mobile-logo {
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

header.scrolled .mobile-logo {
    opacity: 1;
    transform: translateY(0);
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    color: var(--accent);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -5px;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
    letter-spacing: 0.05em;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-green);
    transition: var(--transition);
    left: 50%;
    transform: translateX(-50%);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
    position: absolute;
    right: 0;
}

/* Mobile menu styles */
.mobile-nav {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    padding: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1100;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.mobile-nav.active {
    max-height: 300px;
    padding: 0.5rem 0 1rem;
}

.mobile-nav ul {
    list-style: none;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0.1s;
    display: block;
}

.mobile-nav.active ul {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    display: block;
}

.mobile-nav li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0.5rem;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav a:hover {
    padding-left: 1rem;
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content .animate__animated {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 800;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 40ch;
    font-weight: 600;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--accent-green);
    color: var(--primary);
}

.cta-button i {
    margin-right: 0.5rem;
}

.listen-platforms {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.listen-platforms span {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.platform-icons {
    display: flex;
    gap: 1.2rem;
}

.platform-icon {
    width: 24px;
    height: 24px;
    opacity: 0.9;
    transition: var(--transition);
    color: var(--white);
}

.platform-icon:hover {
    opacity: 1;
    transform: translateY(-3px);
    color: var(--accent-green);
}

.platform-icon:hover svg {
    fill: var(--accent-green);
}

.platform-icon:hover svg path,
.platform-icon:hover svg g {
    fill: var(--accent-green);
}

.platform-icon:hover .svg-fill {
    fill: var(--accent-green);
}

.bg-shape {
    position: absolute;
    z-index: 1;
}

.bg-shape-1 {
    top: -10%;
    right: -10%;
    width: 40%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s linear infinite alternate;
}

.bg-shape-2 {
    bottom: -20%;
    left: -10%;
    width: 35%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 20s linear infinite alternate-reverse;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Episodes Section */
.episodes {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

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

.section-header p {
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 600;
}

/* About Section */
.about {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 2;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: rgba(135, 157, 237, 0.2);
    border-radius: 20px;
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, rgba(135, 157, 237, 0.15) 0%, rgba(168, 181, 242, 0.15) 100%);
    border-radius: 20px;
    z-index: -1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

/* Quote Section */
.host-quote {
    background: rgba(255, 255, 255, 0.15);
    margin: .5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    margin-top: 2.5rem;
    border-radius: 12px;
    position: relative;
    font-style: italic;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Opening quote */
.host-quote::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: .25rem;
    font-size: 6rem;
    color: var(--accent-green);
    font-family: 'League Spartan', sans-serif;
    line-height: 0.6;
    padding-top: .3rem;
}

/* Closing quote */
.host-quote::after {
    content: '"';
    position: absolute;
    bottom: .25rem;
    right: 1rem;
    font-size: 6rem;
    color: var(--accent-green);
    font-family: 'League Spartan', sans-serif;
    line-height: 0;
    padding-bottom: .3rem;
}

.host-quote p.quote-text {
    font-size: 1.25rem;
    margin-top: .5rem;
    margin-bottom: .5rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    text-align: center;
}

.host-quote footer {
    text-align: right;
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    font-style: normal;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Subscribe Section */
.subscribe {
    background: var(--accent);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.subscribe-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.subscribe h2 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.subscribe p {
    opacity: 0.9;
    font-weight: 600;
}

/* Footer */
footer {
    position: relative;
    z-index: 2;
    background-color: var(--primary);
    color: var(--white);
    padding: 2rem 0 2rem;
}

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

.footer-logo {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    color: var(--accent);
    letter-spacing: 0.05em;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -8px;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
}

.footer-about {
    margin-bottom: 1.5rem;
    opacity: 0.7;
    max-width: 300px;
    font-weight: 600;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    gap: .5rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent-green);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-green);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    opacity: 0.6;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom a {
    color: var(--white);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

@media (max-width: 700px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image {
        order: 1;
    }
    .host-quote {
        padding: 1.5rem 1.8rem;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .host-quote::before {
        font-size: 4.5rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    .host-quote::after {
        font-size: 4.5rem;
        bottom: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 1100px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content img {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-image {
        display: none;
    }

    .listen-platforms {
        justify-content: center;
    }
    
    .subscribe-button {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .header-content {
        justify-content: center;
    }
    
    .mobile-logo {
        display: block;
    }
    
    header:not(.scrolled) .mobile-logo {
        visibility: hidden;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding-top: 4rem;
    }
    
    .subscribe-button {
        display: block;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-about {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

footer {
    position: relative;
    z-index: 2;
    background-color: var(--primary);
    color: var(--white);
}

/* 404 Error Section */
.error-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 4rem;
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease;
}

.error-code {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: 0.05em;
    text-shadow: 3px 3px 0 var(--accent);
}

.error-message {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--white);
}

.error-description {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 40ch;
    font-weight: 600;
}

.home-button {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background-color: var(--accent-green);
}

.home-button i {
    margin-right: 0.5rem;
}

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

@media (max-width: 576px) {
    .error-content {
        padding: 2rem;
        width: 90%;
    }
}

/* Privacy Page Styles */
.privacy-hero {
    display: flex;
    align-items: center;
    background-color: var(--primary);
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.privacy-content {
    padding: 0 0 4rem;
}

.privacy-container {
    background-color: var(--white);
    color: #333;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.privacy-container h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.privacy-container h2:first-of-type {
    margin-top: 0;
}

.privacy-container h3 {
    color: var(--accent);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-container p, .privacy-container ul, .privacy-container ol {
    color: #444;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.privacy-container ul, .privacy-container ol {
    padding-left: 2rem;
}

.privacy-container li {
    margin-bottom: 0.5rem;
}

.privacy-container a {
    color: var(--primary);
    text-decoration: underline;
    transition: var(--transition);
}

.privacy-container a:hover {
    color: var(--accent);
}

.privacy-container .last-updated {
    font-style: italic;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Background shapes for privacy page */
.bg-shape {
    position: absolute;
    z-index: 1;
}

.bg-shape-1 {
    top: -10%;
    right: -10%;
    width: 40%;
    height: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 15s linear infinite alternate;
}

.bg-shape-2 {
    bottom: -20%;
    left: -10%;
    width: 35%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphShape 20s linear infinite alternate-reverse;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* Responsive styles for privacy page */
@media (max-width: 768px) {
    .privacy-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .privacy-container {
        padding: 1.5rem;
    }
}