:root {
    --primary-purple: #c084fc;
    --secondary-purple: #a855f7;
    --dark-bg: #0b0c1b;
    --card-bg: #1f1f38;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dim: #aaaaaa;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background: radial-gradient(ellipse at bottom, var(--dark-bg) 0%, #000 100%);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navigation Styles */
.navbar {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-purple) !important;
}

.navbar-logo {
    height: 80px;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
}

.cta-nav-button {
    background: var(--primary-purple);
    color: black !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    margin-left: 1rem;
}

.cta-nav-button:hover {
    background: var(--secondary-purple);
    color: black !important;
}

.language-selector select {
    background: var(--card-bg);
    border: 1px solid rgba(192, 132, 252, 0.3);
    color: var(--text-light);
    border-radius: 6px;
    width: 70px;
    font-size: 0.8rem;
    padding: 0.2rem 0.3rem;
}

@media (max-width: 768px) {
    .language-selector {
        margin-right: 0.5rem !important;
    }
    
    .language-selector select {
        width: 60px;
        font-size: 0.75rem;
        padding: 0.1rem 0.2rem;
    }
    
    .cta-nav-button {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.85rem;
        margin-left: 0.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .navbar-logo {
        height: 64px;
    }
}

.language-selector select:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(192, 132, 252, 0.25);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-character {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.ricky-container {
    position: relative;
    max-width: 600px !important;
    width: 100%;
}

.ricky-portrait {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ricky-portrait:hover {
    transform: scale(1.05);
}

.speech-bubble {
    position: absolute;
    top: -60px;
    left: -80px;
    background: var(--primary-purple);
    color: black;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    max-width: 200px;
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.speech-bubble p {
    margin: 0;
    font-size: 0.9rem;
}

.bubble-tail {
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-purple);
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(192, 132, 252, 0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(192, 132, 252, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ffffff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 20s linear infinite;
    opacity: 0.8;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(192, 132, 252, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Audio Player Styles */
.audio-demo {
    max-width: 500px;
    margin: 0 auto;
}

.audio-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.audio-card h4 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-audio {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-purple);
    border: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-audio:hover {
    background: var(--secondary-purple);
    transform: scale(1.05);
}

.audio-progress {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-purple);
    width: 0%;
    transition: width 0.1s ease;
}

.audio-time {
    font-size: 0.9rem;
    color: var(--text-muted);
    min-width: 80px;
}

.audio-description {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin: 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-purple);
    color: black;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--secondary-purple);
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(192, 132, 252, 0.3);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Mission Statement Section */
.mission-statement-section {
    background: rgba(31, 31, 56, 0.2);
}

.section-header-with-ricky {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ricky-mini {
    margin-bottom: 1rem;
}

.ricky-mini-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 5px 15px rgba(192, 132, 252, 0.3);
}

.mission-value-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.mission-value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.mission-value-featured {
    text-align: center;
    padding: 2.5rem;
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 1.8rem;
    color: black;
}

.mission-value-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mission-value-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.story-teaser {
    font-style: italic;
    color: var(--primary-purple);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.story-btn {
    background: var(--primary-purple);
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    background: transparent;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: var(--card-bg);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-purple);
    font-size: 1.2rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

.stats-row {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* How It Works Section */
.how-it-works-section {
    background: rgba(31, 31, 56, 0.3);
}

.step-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin: 1rem 0;
}

.step-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 5rem 0;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.mission-content .lead {
    font-size: 1.3rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.value-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(192, 132, 252, 0.3);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Final CTA Section */
.final-cta-section {
    text-align: center;
    background: rgba(31, 31, 56, 0.3);
}

.final-cta-section h2 {
    color: var(--primary-purple);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    border-top: 1px solid rgba(192, 132, 252, 0.1);
    color: var(--text-dim);
}

.footer-link {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-purple);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .audio-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .audio-time {
        min-width: auto;
    }
    
    .about-visual {
        height: 300px;
    }
    
    .floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .ricky-container {
        max-width: 600px !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card,
    .step-card,
    .value-card {
        padding: 1.5rem;
    }
    
    .ricky-container {
        max-width: 500px !important;
    }
}

/* How It Works - Ricky Guide Styles */
.ricky-step-guide {
    position: absolute;
    top: -25px;
    right: 15px;
    z-index: 2;
}

.ricky-step-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-purple);
    box-shadow: 0 3px 10px rgba(192, 132, 252, 0.3);
}

/* Final CTA with Ricky */
.ricky-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ricky-newsletter {
    flex-shrink: 0;
}

.ricky-cta-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-purple);
    box-shadow: 0 10px 25px rgba(192, 132, 252, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.ricky-cta-img:hover {
    transform: scale(1.5);
    box-shadow: 0 15px 35px rgba(192, 132, 252, 0.5);
}

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

/* Interactive Ricky Helper */
.ricky-helper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.ricky-helper-container {
    position: relative;
}

.ricky-helper-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: gentle-bounce 2s ease-in-out infinite;
}

.ricky-helper-img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(192, 132, 252, 0.4);
}

.ricky-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--primary-purple);
    color: black;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.ricky-tooltip p {
    margin: 0;
}

.tooltip-tail {
    position: absolute;
    top: 100%;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-purple);
}

.ricky-helper:hover .ricky-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

/* Storyteller Introduction Audio Player */
.intro-audio-section {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.audio-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary-purple);
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.audio-play-btn:hover {
    background: var(--secondary-purple);
    transform: scale(1.05);
}

.audio-play-btn.playing {
    background: var(--accent-orange);
}

.audio-controls {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.audio-progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.audio-progress-bar {
    height: 100%;
    background: var(--primary-purple);
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.audio-time, .audio-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 35px;
}

/* Page-specific Styles */
.page-hero {
    background: rgba(31, 31, 56, 0.3);
    padding-top: 120px;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Features Page Styles */
.features-detail-section {
    background: rgba(31, 31, 56, 0.1);
}

.feature-detail-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.feature-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-detail-description {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-benefits {
    list-style: none;
    padding: 0;
}

.feature-benefits li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-benefits li:before {
    content: "✓";
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.ricky-feature-highlight {
    background: rgba(31, 31, 56, 0.2);
}

.ricky-feature-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Removed feature speech bubble */

.ricky-promises {
    margin-top: 2rem;
}

.promise-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 12px;
}

.text-purple {
    color: var(--primary-purple);
}

/* About Page Styles */
.about-detail-section {
    background: rgba(31, 31, 56, 0.1);
}

.stats-section {
    background: rgba(31, 31, 56, 0.2);
}

.stat-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
}

.stat-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.team-section {
    background: rgba(31, 31, 56, 0.1);
}

.team-ricky-img {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Removed team speech bubble */

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.values-list li:before {
    content: "•";
    color: var(--primary-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* How It Works Page Styles */
.steps-detail-section {
    background: rgba(31, 31, 56, 0.1);
}

.step-detail-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    position: relative;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.step-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
}

.step-number-large {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.ricky-step-guide-large {
    position: absolute;
    top: -30px;
    right: 20px;
    z-index: 2;
}

.ricky-step-img-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 5px 15px rgba(192, 132, 252, 0.3);
}

.step-icon-large {
    font-size: 4rem;
    color: var(--primary-purple);
    margin: 2rem 0 1rem;
}

.step-details {
    margin-top: 2rem;
    text-align: left;
}

.step-details h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.step-details ul {
    list-style: none;
    padding: 0;
}

.step-details li {
    color: var(--text-muted);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.step-details li:before {
    content: "→";
    color: var(--primary-purple);
    position: absolute;
    left: 0;
}

.process-flow-section {
    background: rgba(31, 31, 56, 0.2);
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: black;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--primary-purple);
}

.ricky-tips-section {
    background: rgba(31, 31, 56, 0.1);
}

.ricky-tips-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Removed tips speech bubble */

.tips-list {
    margin-top: 2rem;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 12px;
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content h5 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

/* Storytellers Page Styles */
.storytellers-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.storytellers-grid {
    background: var(--dark-blue);
    min-height: 100vh;
}

.storyteller-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.storyteller-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(192, 132, 252, 0.2);
    border-color: var(--primary-purple);
}

.storyteller-image {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.storyteller-img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-purple);
    transition: transform 0.3s ease;
}

.storyteller-card:hover .storyteller-img {
    transform: scale(1.1);
}

.storyteller-badge {
    position: static;
    background: var(--primary-purple);
    color: var(--dark-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.storyteller-badge.wisdom {
    background: #10b981;
}

.storyteller-badge.science {
    background: #f59e0b;
}

.storyteller-name {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.storyteller-specialty {
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.storyteller-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.storyteller-intro {
    background: rgba(192, 132, 252, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-yellow);
}

.storyteller-intro h4 {
    color: var(--accent-yellow);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.intro-quote {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.storyteller-bio {
    background: rgba(31, 31, 56, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #10b981;
}

.storyteller-bio h4 {
    color: #10b981;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bio-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.bio-details strong {
    color: #10b981;
    font-weight: 600;
}

.storyteller-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.storyteller-disclaimer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-style: italic;
    margin: 0;
    line-height: 1.4;
}

.story-preview {
    background: rgba(192, 132, 252, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-purple);
}

.story-audio {
    margin-top: 1rem;
    text-align: center;
}

.story-audio-player {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.5rem;
}

.audio-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.story-preview h4 {
    color: var(--primary-purple);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-quote {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.storyteller-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coming-soon {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    text-align: center;
}

.coming-soon-icon {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.coming-soon-icon i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.coming-soon-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.coming-soon-features li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-features li:before {
    content: "→";
    color: var(--primary-purple);
    font-weight: bold;
    margin-right: 0.5rem;
}

.storytellers-cta {
    background: rgba(31, 31, 56, 0.5);
    text-align: center;
}

.storytellers-cta h2 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.storytellers-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .storyteller-badge {
        position: static;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .storyteller-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Our Story Page Styles */
.origin-story-section {
    background: rgba(31, 31, 56, 0.1);
}

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

.story-paragraph {
    margin-bottom: 3rem;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.values-section {
    background: rgba(31, 31, 56, 0.2);
}

.value-detail-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(192, 132, 252, 0.1);
    transition: all 0.3s ease;
}

.value-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(192, 132, 252, 0.3);
}

.value-icon-large {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: black;
}

.value-details {
    margin-top: 2rem;
    text-align: left;
}

.value-details h5 {
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.value-details ul {
    list-style: none;
    padding: 0;
}

.value-details li {
    color: var(--text-muted);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.value-details li:before {
    content: "✓";
    color: var(--primary-purple);
    position: absolute;
    left: 0;
}

.impact-section {
    background: rgba(31, 31, 56, 0.1);
}

.impact-list {
    margin-top: 2rem;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(192, 132, 252, 0.1);
    border-radius: 12px;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: black;
    flex-shrink: 0;
}

.impact-content h5 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.ricky-mission-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.ricky-mission-img:hover {
    transform: scale(1.05);
}

/* Removed mission speech bubble */

.vision-section {
    background: rgba(31, 31, 56, 0.2);
}

.vision-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.vision-quote {
    background: rgba(192, 132, 252, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary-purple);
}

.vision-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-purple);
    margin: 0;
}

/* Common CTA Section */
.page-cta {
    background: rgba(31, 31, 56, 0.3);
    text-align: center;
}

.page-cta h2 {
    color: var(--primary-purple);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.page-cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Navigation Active States */
.nav-link.active {
    color: var(--primary-purple) !important;
    font-weight: 600;
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .feature-detail-card,
    .step-detail-card,
    .value-detail-card {
        padding: 2rem;
    }
    
    .process-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .ricky-feature-img,
    .team-ricky-img,
    .ricky-tips-img,
    .ricky-mission-img {
        width: 250px;
        height: 250px;
    }
    
    .speech-bubble {
        position: static;
        margin-top: 1rem;
        animation: none;
        max-width: 100%;
        left: auto;
        right: auto;
        top: auto;
    }
}

/* Ducat Image Hover Effect */
.ducat-image {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Language Selector Styles */
.language-selector-wrapper {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-selector-wrapper:hover {
    background: rgba(192, 132, 252, 0.1);
}

.language-select {
    background: transparent;
    border: none;
    color: var(--primary-purple);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Quicksand', sans-serif;
    outline: none;
    padding: 0;
    margin: 0;
    min-width: 100px;
}

.language-select:focus {
    outline: none;
    box-shadow: none;
}

.language-select option {
    background: var(--card-bg);
    color: var(--text-light);
    padding: 0.5rem;
    border: none;
}

.language-selector-container {
    position: relative;
}

/* Mobile fixes for language selector */
@media (max-width: 991px) {
    .language-selector-wrapper {
        display: flex !important;
        width: 100% !important;
        text-align: left !important;
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(192, 132, 252, 0.2) !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    
    .language-select {
        font-size: 1rem !important;
        min-width: 130px !important;
        background: rgba(192, 132, 252, 0.1) !important;
        border: 1px solid rgba(192, 132, 252, 0.3) !important;
        border-radius: 6px !important;
        padding: 0.5rem 0.75rem !important;
        color: var(--primary-purple) !important;
        cursor: pointer !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        min-height: 44px !important; /* Better touch target */
    }
    
    .language-select:focus {
        border-color: var(--primary-purple) !important;
        box-shadow: 0 0 0 0.2rem rgba(192, 132, 252, 0.25) !important;
        outline: none !important;
    }
    
    .language-select:active {
        background: rgba(192, 132, 252, 0.2) !important;
    }
    
    /* Style the select arrow */
    .language-select {
        background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23c084fc' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") !important;
        background-repeat: no-repeat !important;
        background-position: right 0.75rem center !important;
        background-size: 12px !important;
        padding-right: 2.5rem !important;
    }
}

.ducat-image:hover {
    transform: scale(2);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}
