/* Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;700&display=swap');

:root {
    --purple: #541691;
    --purple-light: #7a34b5;
    --white: #FFFFFF;
    --yellow: #f7bc3e;
    --dark-gray: #333333;
    --light-gray: #f9f9f9;
    --text-color: #333333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    color: var(--white);
}

h2 {
    font-size: 2.5rem;
    color: var(--purple);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--yellow);
    margin: 10px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

h2:hover::after {
    width: 100px;
}

h3 {
    font-size: 1.5rem;
    color: var(--purple);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background-color: var(--yellow);
    color: var(--purple);
    box-shadow: 0 4px 15px rgba(247, 188, 62, 0.4);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #fff;
    opacity: 0.2;
    z-index: -1;
    transition: width 0.3s ease;
}

.primary-btn:hover::before {
    width: 100%;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 188, 62, 0.6);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.secondary-btn:hover {
    background-color: var(--white);
    color: var(--purple);
    transform: translateY(-3px);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(247, 188, 62, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(247, 188, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(247, 188, 62, 0); }
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(84, 22, 145, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    z-index: 1001;
    flex-shrink: 0;
}

.logo a {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.2));
}

header.scrolled .logo img {
    height: 42px;
    filter: drop-shadow(0 1px 5px rgba(84, 22, 145, 0.15));
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
    position: relative;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 8px 8px 8px;
    margin-top: 0;
    list-style: none;
    z-index: 1000;
}

.nav-submenu::before {
    content: '';
    position: absolute;
    top: -4px;
    right: 0;
    left: 0;
    height: 4px;
    background: transparent;
}

.nav-menu li:hover .nav-submenu,
.nav-submenu:hover {
    display: block;
}

.nav-submenu .nav-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--dark-gray);
    background: transparent;
    border-radius: 8px;
    white-space: nowrap;
}

.nav-submenu .nav-link:hover {
    background: rgba(84, 22, 145, 0.08);
    color: var(--purple);
    transform: none;
}

header.scrolled .nav-submenu .nav-link {
    color: var(--dark-gray);
}

header.scrolled .nav-submenu .nav-link:hover {
    color: var(--purple);
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

header.scrolled .nav-link {
    color: var(--dark-gray);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

header.scrolled .nav-link::before {
    background: rgba(84, 22, 145, 0.08);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-1px);
}

header.scrolled .nav-link:hover {
    color: var(--purple);
}

.nav-link.active {
    color: var(--white);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
}

header.scrolled .nav-link.active {
    color: var(--purple);
    background: rgba(84, 22, 145, 0.12);
}

.nav-link.cta-link {
    background: linear-gradient(135deg, var(--yellow) 0%, #f9c84a 100%);
    color: var(--purple) !important;
    font-weight: 600;
    margin-right: 12px;
    border-radius: 25px;
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(247, 188, 62, 0.3);
    position: relative;
    overflow: visible;
}

.nav-link.cta-link::before {
    display: none;
}

.nav-link.cta-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link.cta-link:hover {
    background: linear-gradient(135deg, #f9c84a 0%, var(--yellow) 100%);
    color: var(--purple) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 188, 62, 0.4);
}

header.scrolled .nav-link.cta-link {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(84, 22, 145, 0.25);
}

header.scrolled .nav-link.cta-link:hover {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
    color: var(--white) !important;
    box-shadow: 0 6px 20px rgba(84, 22, 145, 0.35);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

header.scrolled .mobile-menu-toggle span {
    background: var(--purple);
    box-shadow: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
    background: var(--white);
}

header.scrolled .mobile-menu-toggle.active span {
    background: var(--purple);
}

/* Mobile Header Styles */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 220px;
        height: 100vh;
        background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 40px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        backdrop-filter: blur(20px);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    
    .nav-submenu {
        list-style: none;
        margin: 8px 0 0 0;
        padding: 0;
        padding-right: 20px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    
    .nav-submenu .nav-link {
        font-size: 0.95rem;
        padding: 10px 20px;
        background: rgba(84, 22, 145, 0.02);
    }
    
    .nav-link {
        padding: 14px 20px;
        border-radius: 12px;
        text-align: right;
        font-size: 1.05rem;
        width: 100%;
        color: var(--dark-gray);
        background: rgba(84, 22, 145, 0.03);
    }
    
    .nav-link:hover {
        background: rgba(84, 22, 145, 0.08);
        color: var(--purple);
        transform: translateX(-5px);
    }
    
    .nav-link.active {
        background: rgba(84, 22, 145, 0.12);
        color: var(--purple);
        font-weight: 600;
    }
    
    .nav-link.cta-link {
        margin-right: 0;
        margin-top: 12px;
        background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
        color: var(--white) !important;
        box-shadow: 0 4px 15px rgba(84, 22, 145, 0.3);
    }
    
    .nav-link.cta-link:hover {
        background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
        color: var(--white) !important;
        transform: translateX(-5px);
    }
}

@media (max-width: 768px) {
    header {
        padding: 8px 0;
    }
    
    header.scrolled {
        padding: 6px 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    header.scrolled .logo img {
        height: 35px;
    }
}

/* Hero Section Modern Redesign */
.hero-modern {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    padding: 100px 0 0;
    background: var(--purple);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.05;
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.hero-blob-1 {
    width: 350px;
    height: 350px;
    top: 15%;
    left: 10%;
    animation: float-blob 9s ease-in-out infinite;
}

.hero-blob-2 {
    width: 250px;
    height: 250px;
    bottom: 25%;
    right: 15%;
    animation: float-blob 7s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 20%;
    animation: float-blob 11s ease-in-out infinite;
    animation-delay: 1.5s;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(0.8) blur(3px); /* Added blur effect */
    transform: scale(1.05); /* Slight zoom for parallax effect potentially */
    animation: slowZoom 20s infinite alternate;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--purple);
    opacity: 0.85;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 0;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    min-height: 0;
}

.hero-content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    align-self: center;
}

.hero-image-side {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: stretch;
    padding-bottom: 0;
    margin-bottom: -10px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    margin-bottom: -10px;
    align-self: flex-end;
}

.hero-image-wrapper:hover {
    transform: none;
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom;
    margin-bottom: 0;
    transform: translateY(10px);
}

.hero-image-overlay {
    display: none;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(247, 188, 62, 0.15);
    color: var(--yellow);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(247, 188, 62, 0.25);
    letter-spacing: 0.3px;
    width: fit-content;
    align-self: flex-start;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-title .highlight {
    color: var(--yellow);
    display: inline-block;
}

.hero-title .block-text {
    display: block;
    margin-top: 5px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    opacity: 0.95;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 1rem;
}

/* Scroll Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.scroll-down-indicator:hover {
    opacity: 1;
}

.arrow {
    width: 15px;
    height: 15px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
    animation-delay: 0.2s;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

.animate-fade-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-down {
    animation: fadeInDown 1s ease forwards;
    opacity: 0;
    transform: translateY(-30px);
}

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

@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Hero Section */
/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero-modern {
        min-height: 50vh;
    }
    
    .hero-split {
        gap: 50px;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-image-wrapper {
        max-width: 550px;
    }
    
    .about-grid {
        gap: 45px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    #characters {
        padding: 70px 0;
    }
    
    .character-card {
        max-width: 850px;
    }
    
    .character-image {
        min-width: 220px;
    }
    
    #audience {
        padding: 70px 0;
    }
    
    .audience-items-grid {
        gap: 18px;
    }
    
    #podcast {
        padding: 70px 0 0;
    }
    
    .podcast-content-wrapper {
        gap: 50px;
    }
    
    .podcast-image {
        max-width: 350px;
    }
    
    #quote {
        padding: 70px 0;
    }
    
    .quote-blob-1,
    .quote-blob-2,
    .quote-blob-3,
    .quote-blob-4,
    .quote-blob-5 {
        width: 250px;
        height: 250px;
    }
    
    .quote-box {
        padding: 50px 40px;
    }
    
    .quote-text {
        font-size: 1.15rem;
    }
    
    #gallery {
        padding: 70px 0;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(5) {
        grid-column: span 2;
    }
    
    footer {
        padding: 50px 0 18px;
    }
    
    .footer-blob-1,
    .footer-blob-2,
    .footer-blob-3 {
        width: 250px;
        height: 250px;
        opacity: 0.04;
    }
    
    .footer-content {
        margin-bottom: 35px;
    }
    
    .footer-logo img {
        height: 55px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
}

/* iPad Pro and similar tablets */
@media (max-width: 1024px) and (min-width: 993px) {
    .hero-modern {
        min-height: 45vh;
        padding: 100px 0 0;
        display: flex;
        align-items: flex-end;
    }
    
    .hero-container {
        align-items: flex-end;
    }
    
    .hero-split {
        align-items: end;
    }
    
    .hero-image-side {
        align-items: flex-end;
        align-self: flex-end;
    }
    
    .hero-image-wrapper {
        align-self: flex-end;
        margin-bottom: 0;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-modern {
        min-height: auto;
        padding: 100px 0 0;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 30px;
    }
    
    .hero-content-side {
        align-items: center;
        text-align: center;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-badge {
        align-self: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        text-align: center;
        font-size: 1.05rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .hero-image-side {
        align-items: flex-end;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }
    
    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3 {
        width: 200px;
        height: 200px;
    }
    
    .scroll-down-indicator {
        bottom: 20px;
    }
}

/* Small Tablets and Large Phones */
@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 90px 0 0;
    }
    
    .hero-split {
        gap: 35px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-title .block-text {
        margin-top: 8px;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        max-width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    
    .hero-image-side {
        max-width: 100%;
        padding: 0 10px;
        align-items: flex-end;
    }
    
    .hero-image-wrapper {
        max-width: 100%;
    }
    
    .hero-blob-1 {
        width: 150px;
        height: 150px;
        top: 10%;
        left: 5%;
    }
    
    .hero-blob-2 {
        width: 120px;
        height: 120px;
        bottom: 20%;
        right: 10%;
    }
    
    .hero-blob-3 {
        width: 140px;
        height: 140px;
        top: 55%;
        left: 15%;
    }
    
    .scroll-down-indicator {
        bottom: 15px;
        display: none; /* Hide on mobile for cleaner look */
    }
    
    .hero-bg-image {
        filter: brightness(0.75) blur(2px);
    }
    
    .hero-overlay-gradient {
        opacity: 0.9;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-modern {
        padding: 80px 0 0;
        min-height: auto;
    }
    
    .hero-split {
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 0.875rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        padding: 0;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
        margin-bottom: 12px;
    }
    
    .hero-image-side {
        padding: 0;
        align-items: flex-end;
    }
    
    .hero-blob-1,
    .hero-blob-2,
    .hero-blob-3 {
        width: 100px;
        height: 100px;
        opacity: 0.03;
    }
    
    .hero-bg-image {
        filter: brightness(0.7) blur(1px);
    }
    
    .hero-overlay-gradient {
        opacity: 0.92;
    }
    
    #about {
        padding: 40px 0;
    }
    
    .about-grid {
        gap: 30px;
    }
    
    .about-intro {
        font-size: 0.9rem;
        margin-bottom: 12px;
        text-align: justify;
    }
    
    .about-mission {
        font-size: 0.9rem;
        margin-bottom: 18px;
        text-align: justify;
    }
    
    .about-tagline {
        font-size: 0.95rem;
        padding-right: 15px;
        padding-bottom: 0;
        margin-bottom: 15px;
        border-right: 3px solid var(--yellow);
        border-bottom: none;
        text-align: justify;
    }
    
    .about-objectives h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .objectives-list li {
        font-size: 0.85rem;
        margin-bottom: 8px;
        padding-right: 15px;
    }
    
    .about-image::before {
        top: -8px;
        left: -8px;
        border-width: 2px;
    }
    
    #characters {
        padding: 45px 0;
    }
    
    .character-blob-1,
    .character-blob-2,
    .character-blob-3 {
        width: 120px;
        height: 120px;
    }
    
    .characters-intro {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .character-tabs {
        gap: 6px;
        margin-bottom: 18px;
    }
    
    .tab-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .character-carousel-wrapper {
        padding: 0;
    }
    
    /* Hide arrows on small screens, keep dots */
    .character-arrow {
        display: none !important;
    }
    
    /* Keep dots visible */
    .character-dots {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    /* Enable touch swipe */
    .character-carousel {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .character-image {
        height: 220px;
        min-height: 220px;
    }
    
    .character-image img {
        object-fit: cover;
        object-position: top center;
    }
    
    .character-info {
        padding: 18px;
    }
    
    .character-info h3 {
        font-size: 1.2rem;
    }
    
    .character-description p {
        font-size: 0.8rem;
    }
    
    .character-quote {
        font-size: 0.8rem;
        padding: 10px;
    }
    
    .voice-player {
        display: none;
    }
    
    .character-style {
        display: none;
    }
    
    .character-learn-more {
        padding: 9px 18px;
        font-size: 0.8rem;
    }
    
    #audience {
        padding: 45px 0;
    }
    
    .audience-intro {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .audience-visual {
        gap: 25px;
    }
    
    .audience-header h3 {
        font-size: 1.2rem;
    }
    
    .audience-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .audience-items-grid {
        gap: 12px;
    }
    
    .audience-item {
        padding: 14px;
        gap: 10px;
    }
    
    .audience-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        align-self: center;
        margin: 0 auto;
    }
    
    .audience-item-content h4 {
        font-size: 0.95rem;
    }
    
    .audience-item-content p {
        font-size: 0.8rem;
    }
    
    .audience-item-small {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

/* Extra Small Phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    #about {
        padding: 35px 0;
    }
    
    .about-grid {
        gap: 25px;
    }
    
    .about-intro {
        font-size: 0.85rem;
        margin-bottom: 10px;
        text-align: justify;
    }
    
    .about-mission {
        font-size: 0.85rem;
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .about-tagline {
        font-size: 0.9rem;
        padding-right: 15px;
        padding-bottom: 0;
        margin-bottom: 12px;
        border-right: 3px solid var(--yellow);
        border-bottom: none;
        text-align: justify;
    }
    
    .about-objectives {
        margin-top: 12px;
    }
    
    .about-objectives h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .objectives-list li {
        font-size: 0.8rem;
        margin-bottom: 6px;
        padding-right: 12px;
    }
    
    .about-image::before {
        top: -6px;
        left: -6px;
        border-width: 1.5px;
    }
    
    #characters {
        padding: 40px 0;
    }
    
    .character-blob-1,
    .character-blob-2,
    .character-blob-3 {
        width: 100px;
        height: 100px;
        opacity: 0.02;
    }
    
    .characters-intro {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .character-tabs {
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .tab-btn {
        padding: 4px 10px;
        font-size: 0.7rem;
        border-width: 1px;
    }
    
    .character-carousel-wrapper {
        padding: 0;
    }
    
    /* Hide arrows on small screens, keep dots */
    .character-arrow {
        display: none !important;
    }
    
    /* Keep dots visible */
    .character-dots {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    /* Enable touch swipe */
    .character-carousel {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .character-image {
        height: 200px;
        min-height: 200px;
    }
    
    .character-image img {
        object-fit: cover;
        object-position: top center;
    }
    
    .character-info {
        padding: 15px;
    }
    
    .character-role {
        font-size: 0.65rem;
        padding: 2px 8px;
    }
    
    .character-info h3 {
        font-size: 1.1rem;
    }
    
    .character-description p {
        font-size: 0.75rem;
    }
    
    .character-quote {
        font-size: 0.75rem;
        padding: 8px;
    }
    
    .voice-player {
        display: none;
    }
    
    .character-style {
        display: none;
    }
    
    .character-learn-more {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .character-dot {
        width: 8px;
        height: 8px;
    }
    
    .character-dot.active {
        width: 24px;
    }
    
    #audience {
        padding: 40px 0;
    }
    
    #podcast {
        padding: 45px 0 0;
    }
    
    .podcast-blob-1,
    .podcast-blob-2,
    .podcast-blob-3 {
        width: 120px;
        height: 120px;
        opacity: 0.08;
    }
    
    .podcast-content-wrapper {
        gap: 30px;
    }
    
    .podcast-content-side {
        padding-bottom: 30px;
    }
    
    #podcast h2 {
        font-size: 1.75rem;
    }
    

    
    .podcast-image-side {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .podcast-image-side::after {
        left: calc(-50vw + 50%);
        right: calc(-50vw + 50%);
        width: 100vw;
        height: 1px;
        background: #f7bc3ed5;
    }
    
    .podcast-image {
        max-width: 180px;
    }
    
    .podcast-intro {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .episodes-grid {
        gap: 10px;
    }
    
    .episode-card {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .episode-number {
        font-size: 0.6rem;
    }
    
    .episode-title {
        font-size: 0.9rem;
    }
    
    .episode-audio audio {
        height: 32px;
    }
    
    .coming-soon-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    /* More compact coming soon cards */
    .episode-coming-soon {
        padding: 10px 14px !important;
        gap: 6px !important;
    }
    
    .episode-coming-soon .episode-number {
        font-size: 0.6rem;
    }
    
    .episode-coming-soon .episode-title {
        font-size: 0.8rem;
    }
    
    #quote {
        padding: 40px 0;
    }
    
    #quote h2 {
        margin-top: 25px;
        margin-bottom: 0.75rem;
    }
    
    .quote-blob-1,
    .quote-blob-2,
    .quote-blob-3,
    .quote-blob-4,
    .quote-blob-5 {
        width: 100px;
        height: 100px;
        opacity: 0.05;
    }
    
    .quote-box {
        padding: 30px 20px;
        border-radius: 15px;
        margin-top: 12px;
    }
    
    .quote-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .quote-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }
    
    .quote-org-wrapper {
        margin-top: 15px;
        gap: 5px;
    }
    
    .quote-org-divider {
        width: 30px;
        height: 1px;
    }
    
    .quote-org-text {
        font-size: 0.75rem;
    }
    
    .channels-grid {
        gap: 8px;
    }
    
    .channel-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-width: 1.5px;
    }
    
    .channel-link svg {
        width: 1.1rem;
        height: 1.1rem;
    }
    
    #gallery {
        padding: 40px 0;
    }
    
    .gallery-intro {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 6px;
        gap: 3px;
    }
    
    .gallery-item:nth-child(odd) {
        grid-row: span 18 !important;
    }
    
    .gallery-item:nth-child(even) {
        grid-row: span 22 !important;
    }
    
    .gallery-item-mobile-only {
        display: block !important;
    }
    
    .gallery-item:nth-child(7) {
        grid-column: span 1 !important;
        grid-row: span 20 !important;
    }
    
    footer {
        padding: 30px 0 10px;
    }
    
    .footer-blob-1,
    .footer-blob-2,
    .footer-blob-3 {
        width: 100px;
        height: 100px;
        opacity: 0.015;
    }
    
    .footer-content {
        margin-bottom: 18px;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-tagline {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding-top: 15px;
        gap: 10px;
    }
    
    .social-links {
        gap: 5px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .social-links a svg {
        width: 11px;
        height: 11px;
    }
    
    .footer-text p {
        font-size: 0.65rem;
    }
    
    .audience-intro {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }
    
    .audience-visual {
        gap: 20px;
    }
    
    .audience-header {
        margin-bottom: 12px;
    }
    
    .audience-header h3 {
        font-size: 1.1rem;
    }
    
    .audience-icon-wrapper {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .audience-items-grid {
        gap: 10px;
    }
    
    .audience-item {
        padding: 12px;
        gap: 8px;
    }
    
    .audience-item-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        align-self: center;
        margin: 0 auto;
    }
    
    .audience-item-content h4 {
        font-size: 0.9rem;
    }
    
    .audience-item-content p {
        font-size: 0.75rem;
    }
    
    .audience-item-small {
        padding: 7px 12px;
        font-size: 0.8rem;
    }
    
    #podcast {
        padding: 50px 0 0;
    }
    
    .podcast-blob-1,
    .podcast-blob-2,
    .podcast-blob-3 {
        width: 150px;
        height: 150px;
        opacity: 0.1;
    }
    
    .podcast-content-wrapper {
        gap: 35px;
    }
    
    #podcast h2 {
        font-size: 2rem;
    }
    
    .podcast-image-side {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .podcast-image-side::after {
        left: calc(-50vw + 50%);
        right: calc(-50vw + 50%);
        width: 100vw;
        height: 1px;
        background: #f7bc3ed5;
    }
    
    .podcast-image {
        max-width: 200px;
    }
    
    .podcast-intro {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .episodes-grid {
        gap: 12px;
    }
    
    .episode-card {
        padding: 16px 18px;
        gap: 12px;
    }
    
    .episode-number {
        font-size: 0.65rem;
    }
    
    .episode-title {
        font-size: 0.95rem;
    }
    
    .episode-audio audio {
        height: 35px;
    }
    
    .coming-soon-badge {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    /* Most compact coming soon cards */
    .episode-coming-soon {
        padding: 8px 12px !important;
        gap: 5px !important;
    }
    
    .episode-coming-soon .episode-number {
        font-size: 0.55rem;
    }
    
    .episode-coming-soon .episode-title {
        font-size: 0.75rem;
    }
    
    .episode-coming-soon .episode-status {
        margin-top: 2px;
    }
    
    #quote {
        padding: 45px 0;
    }
    
    #quote h2 {
        margin-top: 30px;
        margin-bottom: 0.75rem;
    }
    
    .quote-blob-1,
    .quote-blob-2,
    .quote-blob-3,
    .quote-blob-4,
    .quote-blob-5 {
        width: 120px;
        height: 120px;
        opacity: 0.06;
    }
    
    .quote-box {
        padding: 35px 25px;
        border-radius: 18px;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .quote-text {
        font-size: 1rem;
        line-height: 1.7;
        padding: 0;
        margin-bottom: 18px;
    }
    
    .quote-org-wrapper {
        margin-top: 18px;
        gap: 6px;
    }
    
    .quote-org-divider {
        width: 35px;
    }
    
    .quote-org-text {
        font-size: 0.8rem;
    }
    
    .channels-grid {
        gap: 10px;
    }
    
    .channel-link {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .channel-link svg {
        width: 1.2rem;
        height: 1.2rem;
    }
    
    #gallery {
        padding: 45px 0;
    }
    
    .gallery-intro {
        font-size: 0.875rem;
        margin-bottom: 18px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 8px;
        gap: 4px;
    }
    
    .gallery-item:nth-child(odd) {
        grid-row: span 20 !important;
    }
    
    .gallery-item:nth-child(even) {
        grid-row: span 25 !important;
    }
    
    .gallery-item-mobile-only {
        display: block !important;
    }
    
    .gallery-item:nth-child(7) {
        grid-column: span 1 !important;
        grid-row: span 22 !important;
    }
    
    footer {
        padding: 35px 0 12px;
    }
    
    .footer-blob-1,
    .footer-blob-2,
    .footer-blob-3 {
        width: 120px;
        height: 120px;
        opacity: 0.02;
    }
    
    .footer-content {
        margin-bottom: 20px;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-logo img {
        height: 40px;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .footer-bottom {
        padding-top: 18px;
        gap: 12px;
    }
    
    .social-links {
        gap: 6px;
    }
    
    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .social-links a svg {
        width: 12px;
        height: 12px;
    }
    
    .footer-text p {
        font-size: 0.7rem;
    }
}

/* About Section */
#about {
    background-color: var(--light-gray);
    position: relative;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.about-text {
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.about-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 18px;
    text-align: justify;
}

.about-tagline {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--purple);
    font-weight: 500;
    margin-bottom: 18px;
    padding-right: 15px;
    border-right: 3px solid var(--yellow);
    text-align: justify;
}

.about-mission {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 25px;
    text-align: justify;
}

.about-objectives {
    margin-top: 20px;
}

.about-objectives h3 {
    margin-bottom: 15px;
    color: var(--purple);
    font-size: 1.3rem;
}

.objectives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.objectives-list li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.objectives-list li::before {
    content: '•';
    color: var(--purple);
    font-weight: bold;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--yellow);
    border-radius: 15px;
    z-index: 0;
    transition: all 0.3s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Target Audience */
#audience {
    background-color: var(--white);
    padding: 80px 0;
}

#audience h2 {
    margin-bottom: 0.5rem;
}

.audience-content {
    max-width: 1200px;
    margin: 0 auto;
}

.audience-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.audience-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.audience-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-align: right;
}

.audience-icon-wrapper {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.audience-icon-wrapper.secondary {
    background: linear-gradient(135deg, var(--yellow) 0%, #f9c84a 100%);
}

.audience-header h3 {
    color: var(--purple);
    font-size: 1.5rem;
    margin: 0;
}

.audience-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audience-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--light-gray);
    border-radius: 12px;
    border: 2px solid var(--purple);
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.audience-item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(84, 22, 145, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 1.5rem;
}

.audience-item-content {
    flex: 1;
}

.audience-item-content h4 {
    color: var(--purple);
    font-size: 1.05rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.audience-item-content p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.audience-secondary-visual {
    margin-top: 10px;
}

.audience-items-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.audience-item-small {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(247, 188, 62, 0.1) 0%, rgba(247, 188, 62, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(247, 188, 62, 0.3);
    color: var(--purple);
    font-size: 0.95rem;
    font-weight: 500;
}

.audience-item-small i {
    color: var(--yellow);
    font-size: 1rem;
}

/* Characters Section */
#characters {
    background: var(--purple);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#characters .container {
    position: relative;
    z-index: 1;
}

/* Navigation container for small screens */
.character-navigation {
    display: none;
}

.character-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.05;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.character-blob-1 {
    width: 320px;
    height: 320px;
    top: 10%;
    right: 8%;
    animation: float-blob 8s ease-in-out infinite;
}

.character-blob-2 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    left: 12%;
    animation: float-blob 6s ease-in-out infinite reverse;
}

.character-blob-3 {
    width: 280px;
    height: 280px;
    top: 55%;
    right: 20%;
    animation: float-blob 10s ease-in-out infinite;
    animation-delay: 2s;
}

#characters h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.characters-intro {
    text-align: center;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

.character-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: 'Rubik', sans-serif;
}

.tab-btn.active {
    background: var(--yellow);
    color: var(--purple);
    border-color: var(--yellow);
}

.character-content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.character-content.active {
    display: block;
    opacity: 1;
}

.character-carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.character-carousel {
    position: relative;
}

.character-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--yellow);
    color: var(--purple);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: all 0.3s ease;
}

.character-arrow:hover {
    background: var(--yellow);
    color: var(--purple);
    transform: translateY(-50%) scale(1.1);
}

.character-arrow-prev {
    right: -70px;
}

.character-arrow-next {
    left: -70px;
}

.character-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.character-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.character-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.character-dot.active {
    background: var(--yellow);
    border-color: var(--yellow);
    width: 32px;
    border-radius: 6px;
}

.character-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    color: var(--text-color);
    display: grid;
    grid-template-columns: 250px 1fr;
    border: 2px solid rgba(255, 255, 255, 0.2);
    max-width: 900px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.character-image {
    background-color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.character-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: right;
}

.character-role {
    display: inline-block;
    background: rgba(84, 22, 145, 0.1);
    color: var(--purple);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
    align-self: flex-start;
}

.character-info h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--purple);
}

.character-description {
    margin-bottom: 12px;
}

.character-description p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 8px;
    text-align: justify;
}

.character-style {
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 500;
}

.character-quote {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    border: 2px solid var(--yellow);
    margin: 15px 0;
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    text-align: justify;
}

.voice-player {
    margin-top: 15px;
    background: var(--light-gray);
    padding: 12px;
    border-radius: 10px;
    border: 2px solid rgba(84, 22, 145, 0.1);
}

.voice-player h4 {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--purple);
    font-weight: 600;
}

.voice-player {
    position: relative;
}

.voice-player audio {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    outline: none;
}

/* Custom audio player styling for voice player */
.voice-player audio::-webkit-media-controls-panel {
    background-color: transparent;
    border-radius: 12px;
}

.voice-player audio::-webkit-media-controls-play-button {
    background-color: var(--yellow);
    border-radius: 50%;
    margin-right: 10px;
}

.voice-player audio::-webkit-media-controls-current-time-display,
.voice-player audio::-webkit-media-controls-time-remaining-display {
    color: var(--purple);
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
}

.voice-player audio::-webkit-media-controls-timeline {
    background-color: transparent;
    border-radius: 2px;
    height: 4px;
}

.voice-player audio::-webkit-media-controls-timeline::-webkit-media-slider-thumb {
    background-color: var(--purple);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.voice-player audio::-webkit-media-controls-volume-slider {
    background-color: transparent;
    border-radius: 2px;
}

.voice-player audio::-webkit-media-controls-volume-slider::-webkit-media-slider-thumb {
    background-color: var(--purple);
    border-radius: 50%;
}

/* Firefox audio styling for voice player */
.voice-player audio::-moz-media-controls-panel {
    background-color: transparent;
    border-radius: 12px;
}

.voice-player audio::-moz-media-controls-play-button {
    background-color: var(--yellow);
    border-radius: 50%;
}

.voice-player audio::-moz-media-controls-current-time-display,
.voice-player audio::-moz-media-controls-time-remaining-display {
    color: var(--purple);
    font-family: 'Rubik', sans-serif;
}

.character-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--purple) 0%, #7a34b5 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: fit-content;
}

.character-learn-more:hover {
    background: var(--yellow);
    color: var(--purple);
    border-color: var(--purple);
    transform: translateX(-5px);
}

.character-learn-more i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.character-learn-more:hover i {
    transform: translateX(3px);
}

/* Channels/Gallery */
#channels {
    background-color: var(--light-gray);
    padding: 50px 0;
}

#quote h2 {
    margin-top: 50px;
    margin-bottom: 1.25rem;
}

.channels-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.channel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid rgba(84, 22, 145, 0.1);
    text-decoration: none;
    color: var(--purple);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.channel-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.channel-link:hover {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
}

/* Podcast Section */
#podcast {
    background: var(--purple);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

#podcast .container {
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

.podcast-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.15;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.podcast-blob-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: float-blob 8s ease-in-out infinite;
}

.podcast-blob-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 10%;
    animation: float-blob 6s ease-in-out infinite reverse;
}

.podcast-blob-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 15%;
    animation: float-blob 10s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

.podcast-content-side {
    flex: 1;
    padding-bottom: 50px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.podcast-image-side {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-self: flex-end;
    margin-bottom: 0;
    position: relative;
}

.podcast-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

#podcast h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-align: right;
    position: relative;
}

#podcast h2::after {
    content: '';
    position: absolute;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.podcast-intro {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
}

.episodes-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.episode-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.episode-card:hover {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.episode-number {
    font-size: 0.75rem;
    color: var(--yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
}

.episode-title {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
}

.episode-audio {
    flex: 1;
    min-width: 200px;
}

.episode-audio {
    position: relative;
}

.episode-audio audio {
    width: 100%;
    height: 50px;
    border-radius: 12px;
    outline: none;
}

/* Custom audio player styling */
.episode-audio audio::-webkit-media-controls-panel {
    background-color: transparent;
    border-radius: 12px;
}

.episode-audio audio::-webkit-media-controls-play-button {
    background-color: var(--yellow);
    border-radius: 50%;
    margin-right: 10px;
}

.episode-audio audio::-webkit-media-controls-current-time-display,
.episode-audio audio::-webkit-media-controls-time-remaining-display {
    color: var(--purple);
    font-family: 'Rubik', sans-serif;
    font-size: 0.85rem;
}

.episode-audio audio::-webkit-media-controls-timeline {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    height: 4px;
}

.episode-audio audio::-webkit-media-controls-timeline::-webkit-media-slider-thumb {
    background-color: var(--yellow);
    border-radius: 50%;
    width: 12px;
    height: 12px;
}

.episode-audio audio::-webkit-media-controls-volume-slider {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.episode-audio audio::-webkit-media-controls-volume-slider::-webkit-media-slider-thumb {
    background-color: var(--yellow);
    border-radius: 50%;
}

/* Firefox audio styling */
.episode-audio audio::-moz-media-controls-panel {
    background-color: transparent;
    border-radius: 12px;
}

.episode-audio audio::-moz-media-controls-play-button {
    background-color: var(--yellow);
    border-radius: 50%;
}

.episode-audio audio::-moz-media-controls-current-time-display,
.episode-audio audio::-moz-media-controls-time-remaining-display {
    color: var(--purple);
    font-family: 'Rubik', sans-serif;
}

.episode-coming-soon {
    opacity: 0.7;
}

.episode-status {
    min-width: 80px;
    text-align: left;
}

.coming-soon-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(247, 188, 62, 0.2);
    border: 2px solid var(--yellow);
    border-radius: 20px;
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Quote */
#quote {
    text-align: center;
    position: relative;
    overflow: visible;
    background-color: var(--white);
    padding: 80px 0;
}

#quote .container {
    position: relative;
    z-index: 1;
}

.quote-bg-text {
    position: absolute;
    font-size: 25rem;
    color: var(--purple);
    line-height: 1;
    top: 22%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 0;
    pointer-events: none;
    user-select: none;
    opacity: 0.12;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .quote-bg-text {
        font-size: 15rem;
        opacity: 0.08;
    }
}

@media (max-width: 768px) {
    .quote-bg-text {
        font-size: 10rem;
        opacity: 0.06;
    }
}

@media (max-width: 480px) {
    .quote-bg-text {
        font-size: 8rem;
        opacity: 0.05;
    }
}

.quote-bg-text-left {
    left: 1%;
    top: 65%;
}

.quote-bg-text-right {
    right: 1%;
    top: 8%;
    transform: translateY(-50%);
}

.quote-bg-text i {
    font-size: 1em;
}

#quote .container {
    position: relative;
    z-index: 1;
}

.quote-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.quote-blob-yellow {
    background: var(--yellow);
    opacity: 0.18;
    filter: blur(50px);
}

.quote-blob-1 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    top: -10%;
    right: -5%;
    animation: float-blob 12s ease-in-out infinite;
}

.quote-blob-2 {
    width: 350px;
    height: 350px;
    bottom: -15%;
    left: -8%;
    animation: float-blob 10s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.quote-blob-3 {
    width: 320px;
    height: 320px;
    background: var(--purple);
    top: 50%;
    right: 5%;
    animation: float-blob 14s ease-in-out infinite;
    animation-delay: 2s;
}

.quote-blob-4 {
    width: 280px;
    height: 280px;
    top: 20%;
    left: 5%;
    animation: float-blob 11s ease-in-out infinite;
    animation-delay: 0.5s;
}

.quote-blob-5 {
    width: 380px;
    height: 380px;
    background: var(--purple);
    bottom: -10%;
    right: 10%;
    animation: float-blob 13s ease-in-out infinite reverse;
    animation-delay: 1.5s;
}

.quote-box {
    background: linear-gradient(135deg, var(--purple) 0%, #7a34b5 100%);
    color: var(--white);
    padding: 60px 50px;
    border-radius: 30px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(84, 22, 145, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.contact-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(247, 188, 62, 0.2);
    border-radius: 50%;
}

.contact-box blockquote, .contact-box p, .contact-box cite {
    position: relative;
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    border: none;
    text-align: center;
}

.quote-icon {
    font-size: 3.5rem;
    color: var(--yellow);
    opacity: 0.4;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-quote-icon i {
    transform: rotate(180deg);
}

.quote-text {
    font-size: 1.25rem;
    line-height: 1.85;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 400;
    color: var(--white);
    position: relative;
    padding: 0 20px;
    font-style: normal;
}

.quote-org-wrapper {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quote-org-divider {
    width: 50px;
    height: 2px;
    background: var(--yellow);
    opacity: 0.6;
}

.quote-org-text {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 500;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* Gallery Section */
#gallery {
    background-color: var(--white);
    padding: 80px 0;
}

#gallery h2 {
    margin-bottom: 1.25rem;
}

.gallery-intro {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 10px;
    gap: 3px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: var(--light-gray);
    transition: all 0.4s ease;
}

.gallery-item-mobile-only {
    display: none;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(84, 22, 145, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 8px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(84, 22, 145, 0.25);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
    border-radius: 8px;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 30;
}

.gallery-item-medium {
    grid-column: span 1;
    grid-row: span 25;
}

.gallery-item-small {
    grid-column: span 1;
    grid-row: span 20;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 24;
}

.gallery-item:nth-child(2) {
    grid-column: span 1;
    grid-row: span 21;
}

.gallery-item:nth-child(3) {
    grid-column: span 1;
    grid-row: span 24;
}

.gallery-item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 26;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 23;
}

.gallery-item:nth-child(6) {
    grid-column: span 1;
    grid-row: span 23;
}

/* Footer */
footer {
    background: linear-gradient(180deg, #2d0f4f 0%, #1a0b2e 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer .container {
    position: relative;
    z-index: 1;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.05;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}

.footer-blob-yellow {
    background: var(--yellow);
    opacity: 0.05;
}

.footer-blob-1 {
    width: 350px;
    height: 350px;
    top: 15%;
    left: 10%;
    animation: float-blob 9s ease-in-out infinite;
}

.footer-blob-2 {
    width: 250px;
    height: 250px;
    bottom: 25%;
    right: 15%;
    animation: float-blob 7s ease-in-out infinite reverse;
}

.footer-blob-3 {
    width: 300px;
    height: 300px;
    top: 60%;
    left: 20%;
    animation: float-blob 11s ease-in-out infinite;
    animation-delay: 1.5s;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(247, 188, 62, 0.3), transparent);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 500px;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    opacity: 0.95;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
    color: var(--white);
    margin: 0;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yellow);
    margin-bottom: 20px;
    text-align: right;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: right;
    display: inline-block;
}

.footer-menu li a:hover {
    opacity: 1;
    color: var(--yellow);
    transform: translateX(-5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: right;
    justify-content: flex-end;
}

.footer-link i {
    color: var(--yellow);
    font-size: 1rem;
    width: 20px;
}

.footer-link:hover {
    opacity: 1;
    color: var(--yellow);
    transform: translateX(-5px);
}

.footer-link svg {
    width: 16px;
    height: 16px;
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: var(--white);
}

.social-links a:hover {
    background: var(--yellow);
    color: var(--purple);
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 16px;
    height: 16px;
}

.footer-text {
    margin: 0;
}

.footer-text p {
    opacity: 0.7;
    font-size: 0.85rem;
    margin: 0;
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    h1 { font-size: 3rem; }
    
    /* Removed obsolete hero media queries */
    
    
    #characters {
        padding: 60px 0;
    }
    
    .character-blob-1,
    .character-blob-2,
    .character-blob-3 {
        width: 200px;
        height: 200px;
    }
    
    .characters-intro {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .character-tabs {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .tab-btn {
        padding: 7px 18px;
        font-size: 0.85rem;
    }
    
    .character-carousel-wrapper {
        padding: 0 60px;
        max-width: 100%;
    }
    
    .character-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .character-arrow-prev {
        right: 10px;
    }
    
    .character-arrow-next {
        left: 10px;
    }
    
    .character-card {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .character-image {
        height: 280px;
        min-height: 280px;
    }
    
    .character-info {
        padding: 25px;
    }
    
    .character-info h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .character-description p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .character-quote {
        padding: 15px;
        font-size: 0.9rem;
        margin: 15px 0;
        line-height: 1.7;
    }
    
    .voice-player {
        margin-top: 12px;
        padding: 12px;
    }
    
    .character-learn-more {
        margin-top: 18px;
        padding: 11px 22px;
        font-size: 0.9rem;
    }
    
    .channels-grid {
        gap: 12px;
    }
    
    .channel-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    #podcast {
        padding: 60px 0 0;
    }
    
    .podcast-blob-1,
    .podcast-blob-2,
    .podcast-blob-3 {
        width: 200px;
        height: 200px;
    }
    
    .podcast-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .podcast-content-side {
        padding-bottom: 40px;
    }
    
    #podcast h2 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    #podcast h2::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }
    
    .podcast-image-side {
        display: flex;
        justify-content: center;
        align-items: center;
        order: -1;
        position: relative;
    }
    
    .podcast-image-side::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: calc(-50vw + 50%);
        right: calc(-50vw + 50%);
        width: 100vw;
        height: 2px;
        background: #f7bc3e;
        z-index: 1;
    }
    
    .podcast-image {
        max-width: 250px;
    }
    
    .podcast-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
        text-align: center;
    }
    
    .episodes-grid {
        gap: 15px;
    }
    
    .episode-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 15px;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 12px;
    }
    
    .episode-number {
        min-width: auto;
        font-size: 0.7rem;
    }
    
    .episode-title {
        font-size: 1rem;
        width: 100%;
        margin-bottom: 5px;
    }
    
    .episode-audio {
        width: 100%;
        min-width: auto;
    }
    
    .episode-audio audio {
        height: 38px;
    }
    
    .episode-status {
        min-width: auto;
        width: 100%;
        text-align: center;
    }
    
    .coming-soon-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    /* Compact coming soon cards on small screens */
    .episode-coming-soon {
        padding: 12px 16px !important;
        gap: 8px !important;
    }
    
    .episode-coming-soon .episode-number {
        font-size: 0.65rem;
        min-width: auto;
    }
    
    .episode-coming-soon .episode-title {
        font-size: 0.85rem;
        margin: 0;
    }
    
    .episode-coming-soon .episode-status {
        margin-top: 4px;
    }
    
    #about {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        text-align: right;
        max-width: 100%;
    }
    
    .about-intro,
    .about-mission {
        text-align: justify;
    }
    
    .about-tagline {
        text-align: justify;
        border-right: 3px solid var(--yellow);
        border-bottom: none;
        padding-right: 15px;
        padding-bottom: 0;
        margin-bottom: 18px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image::before {
        top: -12px;
        left: -12px;
        border-width: 2px;
    }
    
    #audience {
        padding: 60px 0;
    }
    
    .audience-visual {
        gap: 35px;
    }
    
    .audience-header {
        justify-content: center;
        text-align: center;
        margin-bottom: 18px;
    }
    
    .audience-header h3 {
        font-size: 1.4rem;
    }
    
    .audience-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .audience-items-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .audience-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 12px;
    }
    
    .audience-item-icon {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
        align-self: center;
        margin: 0 auto;
    }
    
    .audience-item-content h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    
    .audience-item-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .audience-secondary-visual {
        margin-top: 15px;
    }
    
    .audience-items-list {
        flex-direction: column;
        gap: 12px;
    }
    
    .audience-item-small {
        padding: 12px 18px;
        font-size: 0.95rem;
        justify-content: center;
    }
    
    #quote {
        padding: 60px 0;
    }
    
    #quote h2 {
        margin-top: 40px;
        margin-bottom: 1rem;
    }
    
    .quote-blob-1,
    .quote-blob-2,
    .quote-blob-3,
    .quote-blob-4,
    .quote-blob-5 {
        width: 200px;
        height: 200px;
    }
    
    .quote-box {
        padding: 45px 35px;
        border-radius: 25px;
        margin-top: 15px;
    }
    
    .quote-icon {
        font-size: 2.5rem;
        margin-bottom: 18px;
    }
    
    .quote-text {
        font-size: 1.1rem;
        line-height: 1.8;
        padding: 0 15px;
        margin-bottom: 25px;
    }
    
    .quote-org-wrapper {
        margin-top: 25px;
        gap: 10px;
    }
    
    .quote-org-divider {
        width: 45px;
    }
    
    .quote-org-text {
        font-size: 0.9rem;
    }
    
    .channels-grid {
        gap: 12px;
        max-width: 100%;
    }
    
    .channel-link {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    #gallery {
        padding: 60px 0;
    }
    
    .gallery-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 12px;
        gap: 6px;
    }
    
    .gallery-item:nth-child(n) {
        grid-column: span 1 !important;
    }
    
    .gallery-item:nth-child(odd) {
        grid-row: span 25 !important;
    }
    
    .gallery-item:nth-child(even) {
        grid-row: span 30 !important;
    }
    
    footer {
        padding: 45px 0 16px;
    }
    
    .footer-blob-1,
    .footer-blob-2,
    .footer-blob-3 {
        width: 200px;
        height: 200px;
        opacity: 0.03;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-logo {
        margin-bottom: 18px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-tagline {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .footer-bottom {
        padding-top: 25px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .social-links a svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-text p {
        font-size: 0.8rem;
    }
    
    .footer-content {
        margin-bottom: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    section { padding: 50px 0; }
    
    #about {
        padding: 50px 0;
    }
    
    .about-grid {
        gap: 35px;
    }
    
    .about-intro {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
        text-align: justify;
    }
    
    .about-mission {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: justify;
    }
    
    .about-tagline {
        font-size: 1rem;
        line-height: 1.7;
        padding-right: 15px;
        padding-bottom: 0;
        margin-bottom: 18px;
        border-right: 3px solid var(--yellow);
        border-bottom: none;
        text-align: justify;
    }
    
    .about-objectives {
        margin-top: 15px;
    }
    
    .about-objectives h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .objectives-list li {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 10px;
        padding-right: 18px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-image::before {
        top: -10px;
        left: -10px;
        border-width: 2px;
    }
    
    .about-image img {
        border-radius: 12px;
    }
    
    #audience {
        padding: 50px 0;
    }
    
    .audience-intro {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .audience-visual {
        gap: 30px;
    }
    
    .audience-header {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .audience-header h3 {
        font-size: 1.3rem;
    }
    
    .audience-icon-wrapper {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .audience-items-grid {
        gap: 15px;
    }
    
    .audience-item {
        padding: 16px;
        gap: 12px;
    }
    
    .audience-item-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        align-self: center;
        margin: 0 auto;
    }
    
    .audience-item-content h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .audience-item-content p {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .audience-secondary-visual {
        margin-top: 12px;
    }
    
    .audience-items-list {
        gap: 12px;
    }
    
    .audience-item-small {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    #characters {
        padding: 50px 0;
    }
    
    .character-blob-1,
    .character-blob-2,
    .character-blob-3 {
        width: 150px;
        height: 150px;
        opacity: 0.03;
    }
    
    .characters-intro {
        font-size: 0.9rem;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .character-tabs {
        gap: 8px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .tab-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
        border-width: 1.5px;
    }
    
    /* Make wrapper use display: contents so children can be reordered */
    .character-carousel-wrapper {
        display: contents;
    }
    
    /* Reorder elements: carousel first, then navigation */
    .character-carousel {
        order: 1;
        margin-bottom: 20px;
    }
    
    .character-arrow-prev {
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        order: 2;
        display: flex !important;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0;
    }
    
    .character-dots {
        order: 3;
        margin: 0 15px;
        display: flex;
    }
    
    .character-arrow-next {
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        order: 4;
        display: flex !important;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0;
    }
    
    .character-arrow:hover {
        transform: scale(1.1) !important;
    }
    
    /* Create flex container for navigation row */
    #characters .container > div:has(.character-carousel) {
        display: flex;
        flex-direction: column;
    }
    
    /* Navigation row container */
    #characters .container > div:has(.character-carousel)::after {
        content: '';
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        order: 2;
        margin-top: 20px;
    }
    
    /* Actually, simpler: flexbox on container direct children */
    #characters .container {
        display: flex;
        flex-direction: column;
    }
    
    /* Group navigation elements */
    .character-arrow-prev,
    .character-dots,
    .character-arrow-next {
        align-self: center;
    }
    
    /* Create navigation row using flexbox */
    .character-carousel-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .character-carousel {
        order: 1;
    }
    
    /* Navigation row */
    .character-arrow-prev {
        order: 2;
    }
    
    .character-dots {
        order: 3;
    }
    
    .character-arrow-next {
        order: 4;
    }
    
    /* But dots are outside wrapper... Let me use a different parent selector */
    #characters .container > *:nth-child(3) {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2px;
        margin-top: 20px;
    }
    
    .character-carousel-wrapper {
        padding: 0;
        margin-bottom: 0;
    }
    
    /* Hide arrows on small screens, keep dots */
    .character-arrow {
        display: none !important;
    }
    
    /* Keep dots visible */
    .character-dots {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    /* Enable touch swipe on carousel */
    .character-carousel {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .character-card {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }
    
    .character-image {
        height: 250px;
        min-height: 250px;
    }
    
    .character-image img {
        object-fit: cover;
        object-position: top center;
    }
    
    .character-info {
        padding: 20px;
    }
    
    .character-role {
        font-size: 0.7rem;
        padding: 3px 10px;
        margin-bottom: 8px;
    }
    
    .character-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .character-description {
        margin-bottom: 10px;
    }
    
    .character-description p {
        font-size: 0.85rem;
        line-height: 1.7;
        margin-bottom: 6px;
    }
    
    .character-style {
        font-size: 0.85rem;
    }
    
    .character-quote {
        font-size: 0.85rem;
        padding: 12px;
        margin: 12px 0;
        line-height: 1.7;
        border-radius: 8px;
    }
    
    .voice-player {
        display: none;
    }
    
    .character-style {
        display: none;
    }
    
    .character-learn-more {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
    
    .character-dots {
        margin-top: 15px;
        gap: 8px;
    }
    
    .character-dot {
        width: 10px;
        height: 10px;
    }
    
    .character-dot.active {
        width: 28px;
    }
    
    #quote {
        padding: 50px 0;
    }
    
    #quote h2 {
        margin-top: 35px;
        margin-bottom: 0.875rem;
    }
    
    .quote-blob-1,
    .quote-blob-2,
    .quote-blob-3,
    .quote-blob-4,
    .quote-blob-5 {
        width: 150px;
        height: 150px;
        opacity: 0.08;
    }
    
    .quote-box {
        padding: 40px 30px;
        border-radius: 20px;
        margin-top: 15px;
    }
    
    .quote-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .quote-text {
        font-size: 1.05rem;
        line-height: 1.75;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    .quote-org-wrapper {
        margin-top: 20px;
        gap: 8px;
    }
    
    .quote-org-divider {
        width: 40px;
        height: 1.5px;
    }
    
    .quote-org-text {
        font-size: 0.85rem;
    }
    
    .channels-grid {
        gap: 12px;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .channel-link {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .channel-link svg {
        width: 1.3rem;
        height: 1.3rem;
    }
    
    #gallery {
        padding: 50px 0;
    }
    
    .gallery-intro {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 10px;
        gap: 5px;
    }
    
    .gallery-item:nth-child(odd) {
        grid-row: span 22 !important;
    }
    
    .gallery-item:nth-child(even) {
        grid-row: span 28 !important;
    }
    
    .gallery-item-mobile-only {
        display: block !important;
    }
    
    .gallery-item:nth-child(7) {
        grid-column: span 1 !important;
        grid-row: span 18 !important;
    }
    
    footer {
        padding: 40px 0 15px;
    }
    
    .footer-blob-1,
    .footer-blob-2,
    .footer-blob-3 {
        width: 150px;
        height: 150px;
        opacity: 0.02;
    }
    
    .footer-content {
        margin-bottom: 25px;
    }
    
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .footer-logo img {
        height: 45px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-bottom {
        padding-top: 20px;
        gap: 15px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .social-links a svg {
        width: 13px;
        height: 13px;
    }
    
    .footer-text p {
        font-size: 0.75rem;
    }
    
    /* Mobile header adjustments already handled in header section */
}
