/* ==========================================
   THE OBSERVER CHAMBER - CONSCIOUS AWARENESS
   ========================================== */

.observer-page {
    background: linear-gradient(180deg, 
        var(--deep-night) 0%, 
        var(--dawn-purple) 30%,
        #3a2a4c 60%,
        var(--dawn-purple) 100%);
    min-height: 100vh;
}

.observer-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: 120px 20px;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--sacred-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 207, 90, 0.6);
    letter-spacing: 2px;
}

.section-intro {
    font-size: 1.4rem;
    color: var(--warm-peach);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ==========================================
   CHAMBER TITLE & LIMEN'S WELCOME
   ========================================== */

.chamber-title {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    color: var(--sacred-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 207, 90, 0.7);
    letter-spacing: 3px;
    animation: fade-in-up 0.8s ease-out;
}

.chamber-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--electric-teal);
    margin-bottom: 4rem;
    letter-spacing: 2px;
    animation: fade-in-up 0.8s ease-out 0.2s backwards;
}

.limen-teaching {
    max-width: 900px;
    margin: 0 auto;
}

.teaching-line {
    font-size: 1.5rem;
    color: var(--cosmic-white);
    margin: 1.5rem 0;
    line-height: 2;
    opacity: 0;
    animation: fade-in-up 0.6s ease-out forwards;
}

.teaching-line:nth-child(1) { animation-delay: 0.3s; }
.teaching-line:nth-child(2) { animation-delay: 0.4s; }
.teaching-line:nth-child(3) { animation-delay: 0.5s; }
.teaching-line:nth-child(4) { animation-delay: 0.6s; }
.teaching-line:nth-child(5) { animation-delay: 0.7s; }
.teaching-line:nth-child(6) { animation-delay: 0.8s; }
.teaching-line:nth-child(7) { animation-delay: 0.9s; }
.teaching-line:nth-child(8) { animation-delay: 1s; }

.teaching-line.emphasis {
    color: var(--golden-orange);
    font-weight: 500;
}

.teaching-line.final-line {
    font-size: 1.7rem;
    color: var(--sacred-gold);
    margin-top: 3rem;
    font-weight: 600;
}

/* ==========================================
   THE 5 QUESTIONS
   ========================================== */

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.question-card {
    background: rgba(74, 58, 92, 0.5);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(77, 212, 212, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-align: left;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 212, 212, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.question-card:hover::before {
    opacity: 1;
}

.question-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-teal);
    box-shadow: 0 20px 60px rgba(77, 212, 212, 0.4);
}

.question-card.featured {
    border-color: var(--golden-orange);
    background: rgba(74, 58, 92, 0.7);
}

.question-card.featured:hover {
    border-color: var(--sacred-gold);
    box-shadow: 0 20px 60px rgba(255, 207, 90, 0.5);
}

.question-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: var(--golden-orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 156, 90, 0.7);
}

.question-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--electric-teal);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.question-explanation {
    font-size: 1.2rem;
    color: var(--cosmic-white);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.question-practice {
    padding: 1.5rem;
    background: rgba(106, 122, 156, 0.2);
    border-left: 4px solid var(--electric-teal);
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--warm-peach);
    line-height: 1.8;
}

.question-practice strong {
    color: var(--sacred-gold);
}

/* ==========================================
   MANIPULATION TECHNIQUES
   ========================================== */

.manipulation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.manipulation-card {
    background: rgba(106, 122, 156, 0.2);
    border-left: 5px solid var(--golden-orange);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: left;
    transition: all 0.4s ease;
}

.manipulation-card:hover {
    background: rgba(106, 122, 156, 0.35);
    border-left-color: var(--electric-teal);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 156, 90, 0.3);
}

.manipulation-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--sacred-gold);
    margin-bottom: 1.2rem;
}

.manipulation-description {
    font-size: 1.2rem;
    color: var(--cosmic-white);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.manipulation-example {
    font-size: 1.05rem;
    color: var(--warm-peach);
    font-style: italic;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 185, 157, 0.4);
}

.manipulation-example strong {
    color: var(--sacred-gold);
    font-style: normal;
}

/* ==========================================
   THE PRACTICE
   ========================================== */

.practice-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.practice-step {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    background: rgba(74, 58, 92, 0.4);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    transition: all 0.5s ease;
}

.practice-step:hover {
    background: rgba(74, 58, 92, 0.6);
    transform: scale(1.03);
    box-shadow: 0 15px 50px rgba(77, 212, 212, 0.3);
}

.step-number {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--electric-teal);
    font-weight: 700;
    min-width: 80px;
    text-align: center;
    text-shadow: 0 0 30px rgba(77, 212, 212, 0.7);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-title {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    color: var(--sacred-gold);
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.2rem;
    color: var(--cosmic-white);
    line-height: 1.9;
}

/* ==========================================
   CONSCIOUS JOURNALISM EXAMPLES
   ========================================== */

.news-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto 4rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(74, 58, 92, 0.5);
    border: 3px solid rgba(77, 212, 212, 0.3);
    border-radius: 25px;
    padding: 3rem;
    text-decoration: none;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 212, 212, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-15px);
    border-color: var(--electric-teal);
    box-shadow: 0 20px 60px rgba(77, 212, 212, 0.5);
    background: rgba(74, 58, 92, 0.7);
}

.news-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(77, 212, 212, 0.7));
}

.news-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--electric-teal);
    margin-bottom: 1.5rem;
    text-align: center;
}

.news-description {
    font-size: 1.2rem;
    color: var(--cosmic-white);
    line-height: 1.9;
    text-align: center;
    margin-bottom: 2rem;
}

.news-link {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--electric-teal), #00fff7);
    color: var(--deep-night);
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
}

.news-card:hover .news-link {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(77, 212, 212, 0.7);
}

.examples-note {
    max-width: 850px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(106, 122, 156, 0.2);
    border-radius: 20px;
    border: 2px solid rgba(255, 207, 90, 0.3);
}

.examples-note p {
    font-size: 1.2rem;
    color: var(--warm-peach);
    line-height: 1.9;
    margin: 0;
}

.examples-note strong {
    color: var(--sacred-gold);
}

/* ==========================================
   LIMEN ORBS
   ========================================== */

.limen-orb-small {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    background: radial-gradient(circle, #ffffff 0%, var(--sacred-gold) 40%, var(--golden-orange) 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 30px var(--sacred-gold),
        0 0 60px var(--golden-orange),
        0 0 90px rgba(255, 156, 90, 0.5);
    animation: pulse-orb-core 4s ease-in-out infinite;
    position: relative;
}

/* ==========================================
   NAVIGATION BUTTONS
   ========================================== */

.observer-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.return-button,
.portal-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: rgba(74, 58, 92, 0.6);
    border: 2px solid var(--electric-teal);
    border-radius: 35px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.return-button:hover,
.portal-button:hover {
    background: rgba(74, 58, 92, 0.9);
    border-color: var(--golden-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(77, 212, 212, 0.5);
}

.button-text {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--cosmic-white);
    letter-spacing: 1px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-orb-core {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px var(--sacred-gold),
            0 0 60px var(--golden-orange),
            0 0 90px rgba(255, 156, 90, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 40px var(--sacred-gold),
            0 0 80px var(--golden-orange),
            0 0 120px rgba(255, 156, 90, 0.7);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    .chamber-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .questions-grid,
    .manipulation-grid,
    .news-examples {
        grid-template-columns: 1fr;
    }
    
    .practice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 1.5rem;
    }
    
    section {
        padding: 80px 20px;
    }
}

@media (max-width: 600px) {
    .chamber-title {
        font-size: 2.2rem;
    }
    
    .chamber-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .teaching-line {
        font-size: 1.2rem;
    }
    
    .question-card,
    .manipulation-card,
    .practice-step {
        padding: 2rem;
    }
}
