﻿/* ====================================
   EVIDENCE PAGE SPECIFIC STYLES
==================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--accent-white) 0%, var(--accent-light) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

    .page-hero h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

/* Bible Reliability Section */
.content-section {
    padding: 5rem 0;
    background: var(--background);
}

    .content-section.alt-bg {
        background: var(--background-alt);
    }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .content-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }

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

    .card-icon i {
        font-size: 2rem;
        color: white;
    }

.content-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

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

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .content-card ul li {
        color: var(--text-medium);
        margin-bottom: 1rem;
        padding-left: 1.5rem;
        position: relative;
        line-height: 1.6;
    }

        .content-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-medium);
            font-weight: bold;
        }

        .content-card ul li strong {
            color: var(--text-dark);
            font-weight: 600;
        }

.comparison-note,
.expert-quote {
    background: var(--accent-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

.expert-quote {
    font-style: italic;
    color: var(--text-dark);
}

.reliability-summary {
    max-width: 1000px;
    margin: 4rem auto 0;
    text-align: center;
}

    .reliability-summary h3 {
        color: var(--text-dark);
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .reliability-summary p {
        font-size: 1.125rem;
        color: var(--text-medium);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

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

    .historian-quotes blockquote {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        border-left: 4px solid var(--primary-medium);
        box-shadow: 0 8px 30px var(--shadow-light);
        margin: 0;
    }

        .historian-quotes blockquote:before {
            content: "\201C";
            font-size: 3rem;
            color: var(--primary-medium);
            line-height: 0;
            margin-right: 0.5rem;
            vertical-align: -0.4em;
        }

    .historian-quotes cite {
        display: block;
        margin-top: 1rem;
        color: var(--text-medium);
        font-weight: 600;
        font-style: normal;
        font-size: 0.9rem;
    }

/* Eye Section */
.eye-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

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

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1.125rem;
        color: var(--text-medium);
        font-style: italic;
    }

.eye-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.eye-diagram {
    position: relative;
}

.eye-illustration {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-white), var(--accent-light));
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    border: 3px solid var(--primary-medium);
    overflow: hidden;
}

.eye-parts {
    position: relative;
    width: 100%;
    height: 100%;
}

.eye-part {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cornea {
    width: 120px;
    height: 120px;
    background: rgba(160, 103, 59, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-medium);
}

.iris {
    width: 80px;
    height: 80px;
    background: var(--primary-medium);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lens {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.retina {
    width: 200px;
    height: 100px;
    background: rgba(212, 184, 150, 0.5);
    border-radius: 0 0 100px 100px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.optic-nerve {
    width: 20px;
    height: 60px;
    background: var(--primary-dark);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

.part-label {
    position: absolute;
    background: var(--primary-dark);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.eye-part:hover .part-label {
    opacity: 1;
}

.eye-features h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

    .feature-item i {
        font-size: 1.5rem;
        color: var(--primary-medium);
        margin-top: 0.25rem;
        flex-shrink: 0;
    }

.feature-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* DNA Section */
.dna-section {
    padding: 5rem 0;
    background: var(--background);
}

.dna-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.dna-visualization {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.dna-helix {
    position: relative;
    width: 200px;
    height: 400px;
}

.strand {
    position: absolute;
    width: 8px;
    height: 100%;
    background: var(--primary-medium);
    border-radius: 4px;
}

.strand-1 {
    left: 0;
    transform: rotate(-15deg);
    animation: rotateStrand1 4s ease-in-out infinite;
}

.strand-2 {
    right: 0;
    transform: rotate(15deg);
    animation: rotateStrand2 4s ease-in-out infinite;
}

@keyframes rotateStrand1 {
    0%, 100% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(-25deg);
    }
}

@keyframes rotateStrand2 {
    0%, 100% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(25deg);
    }
}

.base-pairs {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.base-pair {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-pale));
    border-radius: 2px;
    animation: pulsePair 2s ease-in-out infinite;
}

@keyframes pulsePair {
    0%, 100% {
        opacity: 0.7;
        transform: scaleX(1);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.dna-facts h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .fact-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px var(--shadow-medium);
    }

.fact-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-medium);
    font-family: 'Crimson Text', serif;
    margin-bottom: 0.5rem;
}

.fact-label {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.dna-information {
    margin-top: 4rem;
}

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

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }

    .info-card i {
        font-size: 2.5rem;
        color: var(--primary-medium);
        margin-bottom: 1.5rem;
    }

    .info-card h4 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-size: 1.125rem;
    }

    .info-card p {
        color: var(--text-medium);
        margin-bottom: 0;
        line-height: 1.6;
    }

/* Body Systems Section */
.body-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.body-interactive {
    margin: 3rem 0 4rem;
}

.body-diagram-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.diagram-instruction {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--accent-light);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

    .diagram-instruction i {
        color: var(--primary-medium);
        font-size: 1.25rem;
        animation: pointPulse 2s ease-in-out infinite;
    }

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.human-body-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.human-body-svg {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Interactive Hotspots */
.body-hotspot {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(160, 103, 59, 0.3);
    border: 3px solid var(--primary-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .body-hotspot:hover {
        background: rgba(160, 103, 59, 0.5);
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(160, 103, 59, 0.4);
    }

.hotspot-pulse {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-medium);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hotspot Positions - Adjust these based on your SVG */
.hotspot-brain {
    top: 5%;
    left: 46%;
}

.hotspot-heart {
    top: 30%;
    left: 48%;
}

.hotspot-lungs {
    top: 25%;
    right: 38%;
}

.hotspot-immune {
    top: 45%;
    left: 48%;
}

/* Active System Display */
.active-system-display {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

    .active-system-display.active {
        display: flex;
    }

.system-display-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    margin: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

.close-system-display {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

    .close-system-display:hover {
        background: var(--primary-medium);
        color: white;
        transform: rotate(90deg);
    }

    .close-system-display i {
        font-size: 1.25rem;
    }

#systemDisplayInfo h3 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: 1rem;
}

#systemDisplayInfo .system-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

    #systemDisplayInfo .system-icon-large i {
        font-size: 2.5rem;
        color: white;
    }

#systemDisplayInfo .system-stats-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--accent-light);
    border-radius: 12px;
}

#systemDisplayInfo .stat-display {
    text-align: center;
}

    #systemDisplayInfo .stat-display .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary-medium);
        font-family: 'Crimson Text', serif;
        display: block;
        margin-bottom: 0.5rem;
    }

    #systemDisplayInfo .stat-display .stat-label {
        font-size: 0.9rem;
        color: var(--text-medium);
        font-weight: 500;
    }

#systemDisplayInfo .system-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 2rem 0;
    font-size: 1.05rem;
}

#systemDisplayInfo .system-features {
    margin-top: 2rem;
}

    #systemDisplayInfo .system-features h4 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    #systemDisplayInfo .system-features ul {
        list-style: none;
        padding: 0;
    }

        #systemDisplayInfo .system-features ul li {
            padding: 0.75rem 0;
            padding-left: 2rem;
            position: relative;
            color: var(--text-medium);
            line-height: 1.6;
        }

            #systemDisplayInfo .system-features ul li:before {
                content: "✓";
                position: absolute;
                left: 0;
                color: var(--primary-medium);
                font-weight: bold;
                font-size: 1.2rem;
            }

.body-systems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.system-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

    .system-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }

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

    .system-icon i {
        font-size: 2rem;
        color: white;
    }

.system-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.system-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-medium);
    font-family: 'Crimson Text', serif;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-align: center;
    font-weight: 500;
}

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

/* Probability Section */
.probability-section {
    padding: 5rem 0;
    background: var(--background);
}

.probability-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

    .probability-content h2 {
        margin-bottom: 2rem;
    }

.large-text {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.probability-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.probability-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .probability-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }

    .probability-card h3 {
        color: var(--text-dark);
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
    }

.probability-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-medium);
    font-family: 'Crimson Text', serif;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.probability-card p {
    color: var(--text-medium);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.scientist-quotes {
    margin-top: 4rem;
}

    .scientist-quotes h3 {
        margin-bottom: 3rem;
        color: var(--text-dark);
    }

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

.quote-card {
    background: var(--accent-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-medium);
    position: relative;
}

    .quote-card p {
        font-style: italic;
        color: var(--text-dark);
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .quote-card cite {
        color: var(--text-medium);
        font-weight: 600;
        font-style: normal;
        font-size: 0.9rem;
    }

/* Conclusion Section */
.conclusion-section {
    padding: 5rem 0;
    background: var(--background-alt);
}

.conclusion-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

    .conclusion-content h2 {
        margin-bottom: 2rem;
    }

.conclusion-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.conclusion-point {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .conclusion-point:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-medium);
    }

    .conclusion-point i {
        font-size: 3rem;
        color: var(--primary-medium);
        margin-bottom: 1.5rem;
    }

    .conclusion-point h3 {
        color: var(--text-dark);
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .conclusion-point p {
        color: var(--text-medium);
        margin-bottom: 0;
    }

.final-thought {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--primary-dark);
    border-radius: 12px;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .final-thought blockquote {
        font-size: 1.25rem;
        font-style: italic;
        line-height: 1.6;
        margin: 0;
        font-family: 'Crimson Text', serif;
    }

    .final-thought cite {
        display: block;
        margin-top: 1.5rem;
        font-style: normal;
        font-weight: 600;
        color: var(--primary-pale);
        font-family: 'Inter', sans-serif;
    }

/* Next Steps Section */
.next-steps-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.next-steps-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.next-steps-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps-section .btn-primary {
    background: white;
    color: var(--primary-dark);
}

    .next-steps-section .btn-primary:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
    }

.next-steps-section .btn-secondary {
    border-color: white;
    color: white;
}

    .next-steps-section .btn-secondary:hover {
        background: white;
        color: var(--primary-dark);
    }

.next-steps-section .btn-tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

    .next-steps-section .btn-tertiary:hover {
        background: rgba(255, 255, 255, 0.2);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .historian-quotes {
        grid-template-columns: 1fr;
    }

    .eye-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .eye-illustration {
        width: 300px;
        height: 225px;
    }

    .dna-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dna-helix {
        width: 150px;
        height: 300px;
    }

    .fact-grid {
        grid-template-columns: 1fr;
    }

    .system-stats {
        grid-template-columns: 1fr;
    }

    /* Human Body Diagram Mobile */
    .human-body-svg {
        max-width: 350px;
    }

    .body-hotspot {
        width: 40px;
        height: 40px;
    }

    .hotspot-pulse {
        width: 24px;
        height: 24px;
    }

    .diagram-instruction {
        flex-direction: column;
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .system-display-content {
        padding: 2rem;
        margin: 0.5rem;
    }

    #systemDisplayInfo h3 {
        font-size: 1.5rem;
    }

    #systemDisplayInfo .system-icon-large {
        width: 60px;
        height: 60px;
    }

        #systemDisplayInfo .system-icon-large i {
            font-size: 2rem;
        }

    #systemDisplayInfo .system-stats-display {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }

    .comparison-cell {
        text-align: left;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .next-steps-buttons {
        flex-direction: column;
        align-items: center;
    }

        .next-steps-buttons .btn-primary,
        .next-steps-buttons .btn-secondary,
        .next-steps-buttons .btn-tertiary {
            width: 100%;
            max-width: 300px;
        }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }

    .eye-section,
    .dna-section,
    .body-section,
    .probability-section,
    .conclusion-section {
        padding: 4rem 0;
    }

    .eye-illustration {
        width: 250px;
        height: 190px;
    }

    .dna-helix {
        width: 120px;
        height: 250px;
    }

    .info-card,
    .system-card,
    .probability-card,
    .conclusion-point {
        padding: 2rem;
    }

    /* Human Body Diagram Small Mobile */
    .human-body-svg {
        max-width: 280px;
    }

    .body-hotspot {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }

    .hotspot-pulse {
        width: 20px;
        height: 20px;
    }

    .system-display-content {
        padding: 1.5rem;
    }

    .close-system-display {
        width: 35px;
        height: 35px;
        top: 1rem;
        right: 1rem;
    }

    #systemDisplayInfo .stat-display .stat-number {
        font-size: 1.5rem;
    }

    .final-thought {
        padding: 2rem;
    }

        .final-thought blockquote {
            font-size: 1.125rem;
        }

    .next-steps-section {
        padding: 4rem 0;
    }
}

/* Subtle glowing gold effect with seamless shine */
.highlight-gold {
    color: #D4A574; /* Warm gold color */
    font-weight: 700;
    position: relative;
    text-shadow: 0 0 8px rgba(212, 165, 116, 0.3), 0 0 12px rgba(212, 165, 116, 0.2);
    animation: subtleGlow 4s ease-in-out infinite alternate;
}

/* Very gentle glow animation */
@keyframes subtleGlow {
    from {
        text-shadow: 0 0 8px rgba(212, 165, 116, 0.3), 0 0 12px rgba(212, 165, 116, 0.2);
    }

    to {
        text-shadow: 0 0 12px rgba(212, 165, 116, 0.4), 0 0 16px rgba(212, 165, 116, 0.25);
    }
}

/* Moving shine effect - seamless with background */
.highlight-gold::after {
    content: '';
    position: absolute;
    top: -2px; /* Slightly extend beyond text */
    bottom: -2px; /* Slightly extend beyond text */
    left: -30%;
    width: 30%;
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.3) 60%, rgba(255, 255, 255, 0.1) 80%, rgba(255, 255, 255, 0) 100% );
    animation: shineBackAndForth 5s infinite;
    pointer-events: none;
    border-radius: 2px; /* Soft rounded edges */
    mix-blend-mode: overlay; /* Blend with background seamlessly */
}

/* Back and forth shine animation */
@keyframes shineBackAndForth {
    0% {
        left: -30%;
    }

    25% {
        left: 100%;
    }

    50% {
        left: 100%;
    }

    75% {
        left: -30%;
    }

    100% {
        left: -30%;
    }
}

/* For users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .highlight-gold {
        animation: subtleGlow 4s ease-in-out infinite alternate;
    }

        .highlight-gold::after {
            animation: none;
            display: none;
        }
}

sup {
    /* Nudge the superscript up into the correct position */
    position: relative;
    top: -0.5em;
    /* Make the superscript text slightly smaller */
    font-size: 0.75em;
    /* Prevent the superscript from affecting the line's height */
    vertical-align: baseline;
}
