/* ========================================== */
/* Morning Energy Boosters - Custom Components */
/* ========================================== */

/* ===== SLEEP STAGES CARDS ===== */
.sleep-stages-visual {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stage-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stage-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stage-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #4361ee, #7209b7);
    color: white;
}

.stage-number {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.stage-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
    font-family: 'Source Serif Pro', serif;
}

.stage-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.stage-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4361ee;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.stage-brainwave {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #6c757d;
}

.stage-brainwave .label {
    color: #6c757d;
    margin-right: 0.5rem;
    font-weight: 500;
}

/* ===== CYCLE VISUALIZATION ===== */
.cycle-visualization {
    margin: 3rem 0;
}

.cycle-timeline {
    display: flex;
    height: 80px;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.timeline-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    flex: 1;
    cursor: default;
}

.timeline-bar[data-stage="n1"] {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
}

.timeline-bar[data-stage="n2"] {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
}

.timeline-bar[data-stage="n3"] {
    background: linear-gradient(135deg, #fce4ec, #f8bbd9);
    color: #c2185b;
}

.timeline-bar[data-stage="rem"] {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
}

.timeline-bar:hover {
    filter: brightness(0.95);
    flex: 1.1;
}

.stage-label {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.time-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.cycle-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.color-box {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.color-box.n1 {
    background: #bbdefb;
}

.color-box.n2 {
    background: #c8e6c9;
}

.color-box.n3 {
    background: #f8bbd9;
}

.color-box.rem {
    background: #e1bee7;
}

/* ===== CALCULATOR DEMO ===== */
.calculator-demo {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.demo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.demo-header h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.demo-header p {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

.demo-controls {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.control-group label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
}

.demo-select,
.demo-input {
    padding: 0.8rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    color: #2d3748;
}

.demo-slider {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-top: 1rem;
    appearance: none;
}

.demo-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4361ee;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.demo-calculate-btn {
    width: 100%;
    padding: 1rem;
    background: #4361ee;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.demo-calculate-btn:hover {
    background: #3a0ca3;
}

/* ===== MYTH/TRUTH CARDS ===== */
.myth-truth-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .myth-truth-container {
        grid-template-columns: 1fr 1fr;
    }
}

.myth-card,
.truth-card {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.myth-card {
    background-color: #fff5f5;
    border-left: 4px solid #f56565;
}

.truth-card {
    background-color: #f0fff4;
    border-left: 4px solid #48bb78;
}

.myth-header,
.truth-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.myth-header i {
    color: #f56565;
    font-size: 1.2rem;
}

.truth-header i {
    color: #48bb78;
    font-size: 1.2rem;
}

.myth-header h4,
.truth-header h4 {
    margin: 0;
    color: #2d3748;
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background-color: #f8fafc;
    color: #4a5568;
    font-weight: 600;
}

.comparison-table td {
    color: #2d3748;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* ===== FEATURE COMPARISON (OLD VS NEW) ===== */
.feature-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .feature-comparison {
        grid-template-columns: 1fr 1fr;
    }
}

.comparison-card {
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.comparison-card.old-way {
    background-color: #f8fafc;
    border-left: 4px solid #94a3b8;
}

.comparison-card.new-way {
    background-color: #eff6ff;
    border-left: 4px solid #3b82f6;
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.comparison-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1e293b;
}

.comparison-header i {
    font-size: 1.2rem;
}

.old-way .comparison-header i {
    color: #64748b;
}

.new-way .comparison-header i {
    color: #3b82f6;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
}

.comparison-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #94a3b8;
}

/* ===== GENERIC GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.info-card p {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 0;
}

/* ===== CUSTOM TIMELINE ===== */
.timeline-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin: 1.5rem 0;
}

.timeline-bar-wrapper {
    display: flex;
    height: 40px;
    background: #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1rem;
}

.timeline-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.timeline-segment:hover {
    filter: brightness(0.95);
}

/* ===== CALCULATOR GUIDE SPECIFICS ===== */
.cycle-visual-container {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cycle-stage-card {
    flex: 1;
    min-width: 140px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.cycle-stage-card h4 {
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.math-box {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

/* ========================================== */
/* Dark Mode Overrides for Components         */
/* ========================================== */

.dark-mode .stage-card {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .stage-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark-mode .stage-number {
    color: rgba(255, 255, 255, 0.8);
}

.dark-mode .stage-duration {
    color: #90cdf4;
}

.dark-mode .stage-brainwave,
.dark-mode .stage-brainwave .label {
    color: #a0aec0;
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Timeline */
.dark-mode .cycle-timeline {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.dark-mode .legend-item {
    color: #cbd5e0;
}

/* Calculator Demo */
.dark-mode .calculator-demo {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .demo-header h3 {
    color: #f7fafc;
}

.dark-mode .demo-header p {
    color: #a0aec0;
}

.dark-mode .control-group label {
    color: #cbd5e0;
}

.dark-mode .demo-select,
.dark-mode .demo-input {
    background-color: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

.dark-mode .demo-slider {
    background: #4a5568;
}

/* Myth/Truth */
.dark-mode .myth-card {
    background-color: rgba(245, 101, 101, 0.1);
    border-color: rgba(245, 101, 101, 0.2);
}

.dark-mode .truth-card {
    background-color: rgba(72, 187, 120, 0.1);
    border-color: rgba(72, 187, 120, 0.2);
}

.dark-mode .myth-header h4,
.dark-mode .truth-header h4 {
    color: #f7fafc;
}

/* Comparison Table */
.dark-mode .comparison-wrapper {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .comparison-table th {
    background-color: #2d3748;
    color: #e2e8f0;
}

.dark-mode .comparison-table td {
    color: #cbd5e0;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Feature Comparison */
.dark-mode .comparison-card {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .comparison-card.old-way {
    background-color: #1a202c;
    border-left-color: #718096;
}

.dark-mode .comparison-card.new-way {
    background-color: #2d3748;
    /* Slightly lighter for contrast */
    border-left-color: #63b3ed;
}

.dark-mode .comparison-header h3 {
    color: #f7fafc;
}

.dark-mode .old-way .comparison-header i {
    color: #a0aec0;
}

.dark-mode .new-way .comparison-header i {
    color: #90cdf4;
}

.dark-mode .comparison-card li {
    color: #cbd5e0;
}

/* Info Cards */
.dark-mode .info-card {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .info-card h4 {
    color: #f7fafc;
}

.dark-mode .info-card p {
    color: #a0aec0;
}

/* Timeline Container */
.dark-mode .timeline-container {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .timeline-bar-wrapper {
    background: #2d3748;
}

/* Cycle Stage Cards */
.dark-mode .cycle-stage-card {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .cycle-stage-card h4 {
    color: #f7fafc;
}

.dark-mode .cycle-stage-card p {
    color: #a0aec0;
}

/* Math Box & Highlight Box */
.dark-mode .math-box,
.dark-mode .highlight-box {
    background: rgba(45, 55, 72, 0.5);
    /* Slightly transparent dark bg */
    border-left-color: #63b3ed;
    /* Lighter blue for dark mode */
}

/* Ensure strong text in math box is visible */
.dark-mode .math-box p strong,
.dark-mode .highlight-box h3,
.dark-mode .highlight-icon {
    color: #ebf8ff;
    /* Very light blue/white */
}

.dark-mode .math-box p,
.dark-mode .highlight-box p {
    color: #cbd5e0;
}

/* CTA Box */
.dark-mode .cta-box.glass-effect {
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9) 0%, rgba(45, 55, 72, 0.9) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .cta-box h3 {
    color: #fff;
}

.dark-mode .cta-box p {
    color: #cbd5e0 !important;
}


/* Self Assessment Box */
.self-assessment {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.self-assessment h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2c3e50;
}

.self-assessment ul {
    list-style: none;
    padding: 0;
}

.self-assessment li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4a5568;
    font-size: 1.05rem;
}

.self-assessment i {
    color: #3b82f6;
}

.dark-mode .self-assessment {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .self-assessment h3 {
    color: #f7fafc;
}

.dark-mode .self-assessment li {
    color: #cbd5e0;
}

.dark-mode .self-assessment i {
    color: #63b3ed;
}

.dark-mode .self-assessment p strong {
    color: #f7fafc;
}

/* FAQ Section */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #4361ee;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
}

.faq-answer .answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.dark-mode .faq-item {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .faq-question {
    color: #f7fafc;
}

.dark-mode .faq-question:hover {
    background: #2d3748;
}

.dark-mode .faq-answer {
    background: #1a202c;
}

.dark-mode .faq-answer .answer-content {
    color: #cbd5e0;
}

/* Summary Box / Pinterest Box */
.summary-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    border: 1px solid #bae6fd;
    position: relative;
}

.summary-box h3 {
    color: #0369a1;
    margin-top: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-box ul {
    margin-bottom: 1.5rem;
}

.summary-box p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

.dark-mode .summary-box {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .summary-box h3 {
    color: #e0f2fe;
}

.dark-mode .summary-box p,
.dark-mode .summary-box li {
    color: #bae6fd;
}

/* Medical Authority Box */
.medical-authority {
    background: #f8fafc;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 3rem;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
}

.medical-authority h3 {
    font-size: 1.1rem;
    margin-top: 0;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.medical-authority ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.medical-authority p:last-child {
    margin-bottom: 0;
}

.disclaimer-text {
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.dark-mode .medical-authority {
    background: #1a202c;
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .medical-authority h3 {
    color: #f7fafc;
}

.dark-mode .medical-authority p,
.dark-mode .medical-authority li {
    color: #cbd5e0;
}

.dark-mode .disclaimer-text {
    color: #a0aec0;
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Results List Styling */
.results-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(67, 97, 238, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(67, 97, 238, 0.1);
}

.result-item i {
    font-size: 1.5rem;
    color: #4361ee;
}

.result-item p {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
}

.dark-mode .result-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .result-item p {
    color: #cbd5e0;
}

.dark-mode .result-item i {
    color: #63b3ed;
}

/* Checklist Grid */
.checklist-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.checklist-grid li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #4a5568;
    background: #f8fafc;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.checklist-grid li i {
    color: #48bb78;
}

.dark-mode .checklist-grid li {
    background: #2d3748;
    color: #cbd5e0;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Sidebar Author Card removed to avoid conflict with morning-blog.css */

/* CTA Box & Glass Effect */
.cta-box {
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid rgba(67, 97, 238, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cta-box h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #4a5568;
    font-size: 1.1rem;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-effect {
    background: rgba(26, 32, 44, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-mode .cta-box {
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .cta-box h3 {
    color: #f7fafc;
}

.dark-mode .cta-box p {
    color: #cbd5e0;
}

.dark-mode .glass-effect {
    background: rgba(45, 55, 72, 0.7);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.6);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Featured Snippet Box */
.snippet-box {
    background: #f8fafc;
    border-left: 5px solid #4361ee;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.snippet-box p {
    font-size: 1.15rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.snippet-box h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    color: #1a202c;
}

.dark-mode .snippet-box {
    background: rgba(67, 97, 238, 0.1);
    border-left-color: #63b3ed;
}

.dark-mode .snippet-box p {
    color: #e2e8f0;
}

.dark-mode .snippet-box h4 {
    color: #f7fafc;
}