/* Original HBO Max-inspired styling from index.html */
:root {
    /* HBO Max Color Scheme */
    --hbo-primary: #1C1C1E;
    --hbo-secondary: #2D1B69;
    --hbo-accent: #5C2D91;
    --hbo-purple: #8B5CF6;
    --hbo-bright-purple: #A855F7;
    --hbo-dark-purple: #1F1B2E;
    --hbo-gradient: linear-gradient(135deg, #2D1B69 0%, #5C2D91 50%, #8B5CF6 100%);
    --hbo-gradient-reverse: linear-gradient(135deg, #8B5CF6 0%, #5C2D91 50%, #2D1B69 100%);
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #7A7A7A;
    --text-accent: #F3F4F6;
    
    /* Background Colors */
    --bg-primary: #000000;
    --bg-secondary: #1C1C1E;
    --bg-card: #2A2A2E;
    --bg-overlay: rgba(28, 28, 30, 0.95);
    
    /* Border and Effects */
    --border-primary: #3A3A3E;
    --border-accent: #5C2D91;
    --shadow-primary: 0 4px 20px rgba(139, 92, 246, 0.15);
    --shadow-secondary: 0 8px 40px rgba(45, 27, 105, 0.3);
    --shadow-intense: 0 20px 60px rgba(139, 92, 246, 0.4);
    
    /* Alert Colors */
    --success-green: #10B981;
    --warning-yellow: #F59E0B;
    --danger-red: #EF4444;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    margin: 0;
}

.nav-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
    display: block;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links .nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links .nav-link:hover {
    color: var(--hbo-bright-purple);
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hbo-gradient);
    transition: width 0.3s ease;
}

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

/* Login Button */
.login-btn {
    background: var(--hbo-gradient);
    color: var(--text-primary);
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--hbo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-size: 1.2rem;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 2px solid var(--border-accent);
    border-radius: 12px;
    padding: 1rem;
    min-width: 200px;
    display: none;
    z-index: 1001;
    box-shadow: var(--shadow-secondary);
}

.user-dropdown.show {
    display: block;
}

.user-info {
    margin-bottom: 1rem;
}

.user-name {
    color: var(--hbo-bright-purple);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.user-progress {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--hbo-bright-purple);
}

/* Crisis Banner */
.crisis-banner {
    background: var(--hbo-gradient);
    color: white;
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(139, 92, 246, 0.3);
}

.crisis-banner.show {
    transform: translateY(0);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--hbo-gradient);
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 500;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote {
    margin: 2rem auto 3rem auto;
    max-width: 700px;
    text-align: center;
}

.hero-quote blockquote {
    background: rgba(139, 92, 246, 0.08);
    border-left: 4px solid var(--hbo-bright-purple);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 0;
    position: relative;
}

.hero-quote blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--hbo-bright-purple);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.hero-quote p {
    font-size: 1.2rem;
    color: var(--text-accent);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--hbo-gradient);
    color: var(--text-primary);
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--hbo-bright-purple);
    padding: 16px 32px;
    border: 2px solid var(--hbo-bright-purple);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--hbo-bright-purple);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

.btn-crisis {
    background: transparent;
    color: var(--danger-red);
    padding: 12px 24px;
    border: 2px solid var(--danger-red);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-crisis:hover {
    background: var(--danger-red);
    color: white;
    transform: translateY(-2px);
}

.crisis-button-container {
    margin-top: 2rem;
    text-align: center;
}

/* Memory Display */
.memory-display {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--hbo-bright-purple);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    max-width: 400px;
    width: 100%;
}

.memory-text {
    color: var(--hbo-bright-purple);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.memory-bar {
    background: var(--bg-secondary);
    border-radius: 10px;
    height: 12px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.memory-fill {
    height: 100%;
    background: var(--hbo-gradient);
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 87.3%;
}

.memory-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
    display: block;
}

/* Button Improvements */
.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Statistics Section */
.stats-section {
    padding: 6rem 0;
    background: var(--bg-primary);
}

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 1rem;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Nathan Quote */
.nathan-quote {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--hbo-bright-purple);
    border-radius: 16px;
    padding: 2rem;
    margin: 4rem 0;
    text-align: center;
}

.nathan-quote p {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
}

.nathan-quote span {
    color: var(--hbo-bright-purple);
    font-weight: 600;
}

/* Healthcare Issues */
.healthcare-issues {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
}

.healthcare-issues h3 {
    color: var(--hbo-bright-purple);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.healthcare-issues ul {
    list-style: none;
    padding: 0;
}

.healthcare-issues li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.healthcare-issues li::before {
    content: '•';
    color: var(--hbo-bright-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Cost Comparison */
.cost-comparison {
    margin-top: 2rem;
}

.cost-section h4 {
    color: var(--hbo-bright-purple);
    margin-bottom: 1rem;
}

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

.cost-item {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--hbo-bright-purple);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cost-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.cost-value {
    color: var(--hbo-bright-purple);
    font-weight: 700;
}

/* Crisis Resources */
.crisis-resources-section {
    background: var(--bg-card);
    border: 2px solid var(--danger-red);
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

.crisis-resources-section h3 {
    color: var(--danger-red);
    margin-bottom: 1rem;
}

.crisis-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.crisis-links a {
    color: var(--danger-red);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 2px solid var(--danger-red);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.crisis-links a:hover {
    background: var(--danger-red);
    color: white;
}

/* Motivation Section */
.motivation-section {
    text-align: center;
    margin: 4rem 0;
}

.theater-masks {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.motivation-section p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.about-section > .container > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--hbo-bright-purple);
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

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

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

/* America's Mental Healthcare Crisis Section */
.problem-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.crisis-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.crisis-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--hbo-bright-purple);
}

.crisis-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hbo-gradient);
}

.crisis-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.crisis-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--hbo-bright-purple);
}

.crisis-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.crisis-stat {
    font-size: 2rem;
    font-weight: 800;
    color: var(--hbo-bright-purple);
    margin-top: 1rem;
}

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

.crisis-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    border: 1px solid var(--hbo-bright-purple);
}

.crisis-cta h3 {
    color: var(--hbo-bright-purple);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.crisis-cta p {
    color: var(--text-primary);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Nathan Fielder Method Section */
.nathan-method-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.nathan-method-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.method-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.method-intro p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.method-card {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hbo-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.method-card:hover::before {
    transform: scaleX(1);
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--hbo-bright-purple);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    color: var(--hbo-bright-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.method-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.method-quote {
    background: rgba(139, 92, 246, 0.1);
    border-left: 4px solid var(--hbo-bright-purple);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.method-quote em {
    color: var(--text-primary);
    font-style: italic;
    font-size: 0.95rem;
}

/* Method Comparison */
.method-comparison {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.method-comparison h3 {
    color: var(--hbo-bright-purple);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-column h4 {
    color: var(--hbo-bright-purple);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
}

.comparison-column li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.comparison-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--hbo-bright-purple);
    border-radius: 50%;
}

.method-footer {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    border: 1px solid var(--hbo-bright-purple);
}

.method-footer p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 0;
}

/* Responsive Design for Method Section */
@media (max-width: 768px) {
    .method-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .method-comparison {
        padding: 2rem;
    }
    
    .nathan-method-section h2 {
        font-size: 2rem;
    }
}

/* Rehearsal Section */
.rehearsal-section {
    padding: 6rem 0;
    background: var(--bg-primary);
    min-height: 100vh;
}

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

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--hbo-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Scenario Cards */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.scenario-card {
    background: var(--bg-card);
    border: 2px solid var(--border-primary);
    border-radius: 20px;
    padding: 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hbo-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.scenario-card:hover::before,
.scenario-card.selected::before {
    transform: scaleX(1);
}

.scenario-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--hbo-bright-purple);
}

.scenario-card.selected {
    border-color: var(--hbo-bright-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
    box-shadow: var(--shadow-primary);
}

.scenario-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.scenario-card:hover .scenario-icon {
    transform: scale(1.1);
}

.scenario-card h3 {
    color: var(--hbo-bright-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scenario-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.difficulty-level {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.difficulty-level.beginner {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success-green);
}

.difficulty-level.intermediate {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning-yellow);
}

.difficulty-level.advanced {
    background: rgba(239, 68, 68, 0.2);
    color: var(--danger-red);
}

/* Conversation Interface */
.conversation-interface {
    background: var(--bg-card);
    border: 2px solid var(--border-accent);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-secondary);
    display: none;
    animation: fadeIn 0.6s ease-out;
}

.conversation-interface.active {
    display: block;
}

.conversation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
}

.scenario-info h3 {
    color: var(--hbo-bright-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Story Container */
.story-container {
    margin-bottom: 2rem;
}

.story-text {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--hbo-bright-purple);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.story-text.typing::after {
    content: '|';
    color: var(--hbo-bright-purple);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Character Dialogue */
.character-dialogue {
    background: var(--bg-primary);
    border: 2px solid var(--border-primary);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: none;
}

.character-dialogue.active {
    display: block;
    animation: slideIn 0.5s ease-out;
}

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

.character-avatar {
    width: 50px;
    height: 50px;
    background: var(--hbo-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dialogue-text {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    color: var(--text-primary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Choice Container */
.choice-container {
    margin-bottom: 2rem;
}

.choice-container h4 {
    color: var(--hbo-bright-purple);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.choice-button {
    background: var(--bg-secondary);
    border: 2px solid var(--border-primary);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.choice-button:hover {
    border-color: var(--hbo-bright-purple);
    transform: translateX(8px);
}

.choice-header {
    font-weight: 600;
    color: var(--hbo-bright-purple);
    margin-bottom: 0.5rem;
}

.choice-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Stats Display */
.scenario-stats {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--hbo-bright-purple);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-bar {
    background: var(--bg-secondary);
    border-radius: 10px;
    height: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
    width: 0%;
}

.stat-fill.empathy {
    background: linear-gradient(90deg, #10B981, #34D399);
}

.stat-fill.trust {
    background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.stat-fill.effectiveness {
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-primary);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--hbo-bright-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Animation Classes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-content { text-align: center; }
    .hero-text h1, .hero-title { font-size: 2.5rem; }
    .scenarios-grid { grid-template-columns: 1fr; }
    .scenario-stats { grid-template-columns: 1fr; gap: 1rem; }
    .stats-grid { 
        grid-template-columns: 1fr; 
        padding: 2rem; 
        gap: 2rem; 
    }
    .stat-number { font-size: 3rem; }
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cost-breakdown {
        grid-template-columns: 1fr;
    }
    .crisis-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mental Health Organizations Section */
.mental-health-organizations {
    padding: 6rem 0;
    background: var(--bg-primary);
}

.organizations-category {
    margin-bottom: 4rem;
}

.organizations-category h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--hbo-bright-purple);
    margin-bottom: 2rem;
    text-align: center;
}

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

.org-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.org-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hbo-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.org-card:hover::before {
    transform: scaleX(1);
}

.org-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--hbo-bright-purple);
}

.org-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.org-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hbo-bright-purple);
    margin-bottom: 1rem;
}

.org-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.org-links {
    background: rgba(139, 92, 246, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.org-links a {
    color: var(--hbo-bright-purple);
    text-decoration: none;
    font-weight: 600;
}

.org-links a:hover {
    text-decoration: underline;
}

.org-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* Crisis Resources Highlight */
.crisis-resources-highlight {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid var(--danger-red);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.crisis-resources-highlight h3 {
    color: var(--danger-red);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

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

.crisis-resource {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--danger-red);
}

.crisis-link {
    display: inline-block;
    color: var(--danger-red);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.crisis-link:hover {
    background: var(--danger-red);
    color: white;
    transform: translateY(-2px);
}

.resource-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 0.5rem;
}

/* Responsive Design for Organizations */
@media (max-width: 768px) {
    .organizations-grid {
        grid-template-columns: 1fr;
    }
    
    .crisis-resources-grid {
        grid-template-columns: 1fr;
    }
    
    .org-card {
        padding: 1.5rem;
    }
}

/* Quick Access Mental Health Tools */
.quick-tools-section {
    padding: 4rem 0;
    background: var(--bg-secondary);
}

.quick-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--hbo-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-secondary);
    border-color: var(--hbo-bright-purple);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tool-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hbo-bright-purple);
    margin-bottom: 1rem;
}

.tool-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-link {
    display: inline-block;
    color: var(--hbo-bright-purple);
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--hbo-bright-purple);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(139, 92, 246, 0.1);
}

.tool-link:hover {
    background: var(--hbo-bright-purple);
    color: white;
    transform: translateY(-2px);
}

.tools-quote {
    text-align: center;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid var(--hbo-bright-purple);
}

.tools-quote p {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Bottom Crisis Support Banner */
.bottom-crisis-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--hbo-gradient);
    color: white;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUpFromBottom 0.5s ease-out;
}

.crisis-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.crisis-label {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.crisis-links-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.crisis-link-bottom {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.crisis-link-bottom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.separator {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.crisis-close-bottom {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: auto;
}

.crisis-close-bottom:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideUpFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Tool Notification Styling */
.tool-notification {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-text {
    font-size: 0.9rem;
}

/* Responsive Design for Quick Tools */
@media (max-width: 768px) {
    .quick-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .crisis-banner-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .crisis-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .separator {
        display: none;
    }
}
