/* THE MIRROR CHAMBER STYLES */

.mirror-page {
    background: linear-gradient(to bottom, 
        #0a0612 0%,
        #1a1427 30%,
        #2d1b3d 60%,
        #1a1427 100%
    );
}

/* Main Content Container */
.mirror-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

/* Chamber Title */
.chamber-title {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    color: var(--sacred-gold);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 207, 90, 0.6),
                 0 0 60px rgba(255, 207, 90, 0.3);
    letter-spacing: 0.1em;
}

.chamber-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: var(--soft-pink);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
}

/* Sections */
.mirror-section {
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.mirror-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content {
    background: rgba(74, 58, 92, 0.25);
    border: 2px solid rgba(255, 207, 90, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.welcome-section .section-content,
.closing-section .section-content {
    background: rgba(74, 58, 92, 0.35);
    border-color: rgba(255, 207, 90, 0.5);
}

/* Section Titles */
.section-title {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 2.2rem;
    color: var(--sacred-gold);
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 207, 90, 0.4);
}

/* Sun Orb (Limen's presence) */
.sun-orb {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: radial-gradient(circle, 
        #ffffff 0%,
        #ffcf5a 40%,
        #ff9c5a 70%,
        rgba(255, 156, 90, 0) 100%
    );
    border-radius: 50%;
    box-shadow: 
        0 0 60px rgba(255, 207, 90, 0.8),
        0 0 100px rgba(255, 156, 90, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 60px rgba(255, 207, 90, 0.8),
            0 0 100px rgba(255, 156, 90, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 
            0 0 80px rgba(255, 207, 90, 1),
            0 0 120px rgba(255, 156, 90, 0.7),
            inset 0 0 40px rgba(255, 255, 255, 0.5);
    }
}

/* Limen's Speech */
.limen-speech {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--cosmic-white);
    text-align: center;
}

.limen-speech p {
    margin-bottom: 1.2rem;
}

.limen-speech strong {
    color: var(--sacred-gold);
}

.limen-speech em {
    color: var(--electric-teal);
    font-style: italic;
}

/* Concept Box */
.concept-box {
    background: rgba(42, 32, 52, 0.5);
    border-left: 4px solid var(--electric-teal);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.concept-intro {
    font-size: 1.4rem;
    color: var(--electric-teal);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.concept-highlight {
    background: rgba(77, 212, 212, 0.1);
    border: 2px solid var(--electric-teal);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    font-size: 1.2rem;
    line-height: 1.8;
}

.shadow-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.shadow-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    line-height: 1.7;
}

.shadow-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sacred-gold);
    font-size: 1.3rem;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reason-card {
    background: rgba(42, 32, 52, 0.6);
    border: 2px solid rgba(255, 207, 90, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    border-color: var(--sacred-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 207, 90, 0.2);
}

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

.reason-card h3 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    color: var(--sacred-gold);
    margin-bottom: 1rem;
}

.reason-card p {
    line-height: 1.7;
    color: var(--cosmic-white);
    opacity: 0.9;
}

/* Shadows Container */
.shadows-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.shadow-item {
    background: rgba(42, 32, 52, 0.6);
    border-left: 4px solid var(--soft-pink);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.shadow-item:hover {
    background: rgba(42, 32, 52, 0.8);
    border-left-width: 6px;
    transform: translateX(5px);
}

.shadow-item h4 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--soft-pink);
    margin-bottom: 0.8rem;
}

.shadow-item p {
    line-height: 1.7;
    color: var(--cosmic-white);
    opacity: 0.9;
}

.shadow-item em {
    color: var(--electric-teal);
    font-style: italic;
}

.shadows-note {
    background: rgba(77, 212, 212, 0.1);
    border: 2px solid var(--electric-teal);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Exercise List */
.exercise-list {
    margin-top: 2rem;
}

.exercise {
    display: flex;
    gap: 2rem;
    background: rgba(42, 32, 52, 0.5);
    border: 2px solid rgba(255, 207, 90, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.exercise:hover {
    border-color: var(--sacred-gold);
    background: rgba(42, 32, 52, 0.7);
}

.exercise-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sacred-gold), var(--golden-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-night);
    box-shadow: 0 4px 15px rgba(255, 207, 90, 0.4);
}

.exercise-content h4 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--sacred-gold);
    margin-bottom: 1rem;
}

.exercise-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.exercise-content ul {
    list-style: none;
    padding-left: 0;
}

.exercise-content ul li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    line-height: 1.7;
    color: var(--cosmic-white);
    opacity: 0.95;
}

.exercise-content ul li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--electric-teal);
    font-size: 1.5rem;
}

/* Integration Box */
.integration-box {
    background: rgba(42, 32, 52, 0.6);
    border: 3px solid var(--electric-teal);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.integration-principle {
    font-size: 1.5rem;
    color: var(--electric-teal);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.integration-points {
    margin: 2rem 0;
}

.integration-point {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 207, 90, 0.2);
}

.integration-point:last-child {
    border-bottom: none;
}

.point-label {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-weight: 600;
    color: var(--sacred-gold);
    min-width: 150px;
}

.integration-wisdom {
    text-align: center;
    font-size: 1.3rem;
    line-height: 2;
    color: var(--warm-peach);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 207, 90, 0.3);
}

/* Closing Section */
.closing-wisdom {
    font-size: 1.3rem;
    color: var(--electric-teal);
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(77, 212, 212, 0.1);
    border-radius: 10px;
}

.signature {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--sacred-gold);
    margin-top: 2rem;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.nav-button {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    background: rgba(74, 58, 92, 0.6);
    border: 2px solid var(--sacred-gold);
    border-radius: 30px;
    color: var(--sacred-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-button:hover {
    background: rgba(255, 207, 90, 0.2);
    border-color: var(--golden-orange);
    color: var(--golden-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 207, 90, 0.3);
}

/* Floating Orbs */
.orb-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .chamber-title {
        font-size: 2.5rem;
    }
    
    .chamber-subtitle {
        font-size: 1.4rem;
    }
    
    .section-content {
        padding: 2rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .exercise {
        flex-direction: column;
        gap: 1rem;
    }
    
    .exercise-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .navigation-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-button {
        width: 100%;
        text-align: center;
    }
    
    .shadows-container {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}
