/* Story Page Specific Styles - Updated to Match Base Dark/Neon Theme */
.our-story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.story-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(15,15,19,0.9) 0%, rgba(26,26,46,0.9) 100%);
    border-radius: 15px;
    margin-top: 2rem;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.story-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1611930036507-77de8c6c8e1c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--primary-blue);
    position: relative;
}

.hero-title .highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(var(--yellow-rgb), 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.video-link {
    color: var(--youtube-red);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: var(--glass-bg);
}

.video-link:hover {
    color: var(--text-primary);
    background: var(--youtube-red);
    transform: translateY(-2px);
}

.video-link i {
    margin-left: 5px;
}

/* Timeline Styles */
.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 5rem auto;
    padding-left: 50px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--twitch-purple));
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-bg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 0 5px var(--card-bg);
    z-index: 1;
}

.timeline-content {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--card-bg);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(var(--black-rgb), 0.15);
}

.timeline-title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.timeline-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--gold-accent);
}

/* Story Elements */
.story-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-blue);
    padding: 1.5rem;
    border-left: 4px solid var(--youtube-red);
    background: var(--glass-bg);
    margin: 1.5rem 0;
    position: relative;
}

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--youtube-red);
    opacity: 0.5;
    position: relative;
    top: 1rem;
}

.problem-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.question-bubble {
    background: rgba(var(--yellow-rgb), 0.1);
    border: 1px solid rgba(var(--yellow-rgb), 0.3);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    max-width: 80%;
}

.question-bubble i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 1.2rem;
}

.inspiration-points {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.inspiration-card {
    flex: 1;
    min-width: 250px;
    background: var(--glass-bg);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.inspiration-card:hover {
    transform: scale(1.05);
}

.inspiration-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.eureka {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.eureka::before, .eureka::after {
    content: '✨';
    margin: 0 10px;
}

.concept-evolution {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.concept-stage {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(var(--white-rgb), 0.03);
    border-radius: 10px;
    border-top: 3px solid var(--primary-blue);
}

.stage-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--yellow-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.birth-announcement {
    text-align: center;
    margin: 3rem 0;
}

.brand-highlight {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.movement-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.movement-text span {
    color: var(--neon-pink);
    position: relative;
}

.movement-text span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.movement-text:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* What Makes Us Different Section */
.different-section {
    background: rgba(15,15,19,0.7);
    border-radius: 15px;
    margin: 4rem 0;
    padding: 3rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-title .underline {
    position: relative;
}

.section-title .underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-accent);
    border-radius: 3px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--black-rgb), 0.2);
}

.feature-card.fan-driven {
    border-color: var(--primary-blue);
}

.feature-card.cutting-edge {
    border-color: var(--youtube-red);
}

.feature-card.supportive {
    border-color: var(--twitch-purple);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
}

.feature-card.fan-driven .feature-icon {
    background: rgba(var(--yellow-rgb), 0.1);
    color: var(--primary-blue);
}

.feature-card.cutting-edge .feature-icon {
    background: rgba(255, 0, 0, 0.1);
    color: var(--youtube-red);
}

.feature-card.supportive .feature-icon {
    background: rgba(var(--yellow-rgb), 0.1);
    color: var(--twitch-purple);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* CTA Section */
.story-cta {
    border-radius: 15px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    color: var(--text-primary);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-title .highlight {
    color: var(--success-green);
}

.cta-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.cta-subtext {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-quote {
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    color: var(--success-green);
    margin: 2rem 0;
    position: relative;
}

.cta-quote::before, .cta-quote::after {
    content: '"';
    color: rgba(var(--white-rgb), 0.5);
    font-size: 3rem;
    position: relative;
    top: 15px;
}

.cta-button {
    background: var(--text-primary);
    color: var(--primary-blue);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(var(--black-rgb), 0.3);
    background: var(--neon-pink);
    color: var(--text-primary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .story-timeline {
        padding-left: 30px;
    }
    
    .timeline-icon {
        left: -30px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-content::before {
        left: -10px;
        border-width: 10px;
    }
    
    .concept-evolution {
        flex-direction: column;
    }
}

/* Lead Text */
.lead_1 {
    font-size: 1.25rem;
    font-weight: 500;
}