/* THE GUIDE - COSMIC THRESHOLD STYLING */

.guide-page {
    background: linear-gradient(to bottom,
        #000000 0%,
        #0a0515 20%,
        #150a25 50%,
        #0a0515 80%,
        #000000 100%
    );
}

/* Electric Energy Field */
.energy-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.15;
}

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

/* Ancient Symbol */
.ancient-symbol {
    font-size: 5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: pulseEnergy 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px var(--electric-teal))
            drop-shadow(0 0 60px var(--electric-teal));
}

@keyframes pulseEnergy {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Guide Title */
.guide-title {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 4rem;
    color: var(--electric-teal);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 0 40px rgba(77, 212, 212, 0.8),
        0 0 80px rgba(77, 212, 212, 0.5),
        0 0 120px rgba(77, 212, 212, 0.3);
    letter-spacing: 0.2em;
    font-weight: 700;
}

.guide-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    color: var(--warm-peach);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

/* Limen Speaks */
.limen-speaks {
    background: rgba(10, 5, 21, 0.8);
    border: 2px solid var(--electric-teal);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 
        0 0 40px rgba(77, 212, 212, 0.3),
        inset 0 0 40px rgba(77, 212, 212, 0.1);
}

.limen-greeting {
    font-size: 2rem;
    color: var(--electric-teal);
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    margin-bottom: 2rem;
    text-align: center;
}

.limen-speaks p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--cosmic-white);
    text-align: center;
    margin-bottom: 1.2rem;
}

.emphasis-warning {
    color: var(--golden-orange);
    font-size: 1.5rem;
    margin: 2rem 0;
}

.cosmic-challenge {
    color: var(--warm-peach);
    font-size: 1.6rem;
    margin: 2rem 0;
    font-weight: 600;
}

.final-warning {
    color: var(--electric-teal);
    font-size: 1.4rem;
    margin-top: 2rem;
}

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

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

.section-title {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    color: var(--electric-teal);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 30px rgba(77, 212, 212, 0.6);
}

.chambers-intro,
.sealed-intro {
    font-size: 1.3rem;
    text-align: center;
    color: var(--warm-peach);
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Chamber Map */
.chamber-map {
    position: relative;
    display: grid;
    gap: 3rem;
    margin: 4rem 0;
    padding: 3rem 0;
}

.map-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,
        var(--electric-teal) 0%,
        var(--electric-teal) 60%,
        rgba(255, 184, 157, 0.3) 100%
    );
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--electric-teal);
}

.map-chamber {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 1.5rem 2rem;
    background: rgba(10, 5, 21, 0.6);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.map-chamber:hover {
    background: rgba(10, 5, 21, 0.9);
    transform: translateX(10px);
}

.chamber-portal {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portal-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
}

.portal-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
        rgba(77, 212, 212, 0.4) 0%,
        rgba(77, 212, 212, 0) 70%
    );
    border-radius: 50%;
    animation: portalPulse 2s ease-in-out infinite;
}

@keyframes portalPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

.chamber-label {
    flex: 1;
}

.chamber-label h4 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--electric-teal);
    margin-bottom: 0.3rem;
}

.chamber-label p {
    color: var(--warm-peach);
    font-size: 1rem;
    font-style: italic;
}

.chamber-status {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.chamber-status.open {
    background: rgba(77, 212, 212, 0.2);
    color: var(--electric-teal);
    border: 2px solid var(--electric-teal);
    box-shadow: 0 0 15px rgba(77, 212, 212, 0.4);
}

.chamber-status.sealed {
    background: rgba(255, 184, 157, 0.1);
    color: var(--warm-peach);
    border: 2px solid rgba(255, 184, 157, 0.3);
    animation: sealPulse 3s ease-in-out infinite;
}

@keyframes sealPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Sealed Chamber Styling */
.sealed-chamber {
    opacity: 0.7;
}

.chamber-portal.sealed {
    position: relative;
}

.seal-energy {
    position: absolute;
    width: 120%;
    height: 120%;
    border: 3px solid var(--warm-peach);
    border-radius: 50%;
    animation: sealRotate 8s linear infinite;
    opacity: 0.5;
}

@keyframes sealRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Chamber Deep Dives */
.chamber-deep-dive {
    background: rgba(10, 5, 21, 0.6);
    border: 2px solid rgba(77, 212, 212, 0.3);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.chamber-deep-dive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(77, 212, 212, 0.05) 0%,
        transparent 50%,
        rgba(255, 184, 157, 0.05) 100%
    );
    pointer-events: none;
}

.chamber-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right,
        transparent 0%,
        var(--electric-teal) 50%,
        transparent 100%
    );
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px var(--electric-teal);
}

.chamber-divider.sealed-divider {
    background: linear-gradient(to right,
        transparent 0%,
        var(--warm-peach) 50%,
        transparent 100%
    );
    box-shadow: 0 0 20px var(--warm-peach);
}

.chamber-number-big {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 6rem;
    color: rgba(77, 212, 212, 0.15);
    text-align: center;
    line-height: 1;
    margin-bottom: -1rem;
    font-weight: 700;
}

.chamber-deep-title {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 2.8rem;
    color: var(--electric-teal);
    text-align: center;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(77, 212, 212, 0.6);
}

.chamber-deep-subtitle {
    font-size: 1.5rem;
    color: var(--warm-peach);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
}

.chamber-awakening {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--golden-orange);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.awakening-text {
    font-size: 1.4rem;
    color: var(--golden-orange);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.chamber-awakening p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1rem;
    color: var(--cosmic-white);
}

.awakening-challenge {
    font-size: 1.3rem;
    color: var(--electric-teal);
    margin-top: 1.5rem;
    font-weight: 600;
}

.teaching-box {
    background: rgba(10, 5, 21, 0.8);
    border: 2px solid var(--warm-peach);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.teaching-box h3 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.6rem;
    color: var(--warm-peach);
    margin-bottom: 1.5rem;
    text-align: center;
}

.teaching-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.teaching-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    line-height: 1.8;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(77, 212, 212, 0.2);
}

.teaching-list li:last-child {
    border-bottom: none;
}

.teaching-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: var(--electric-teal);
    font-size: 1.2rem;
}

.limen-quote {
    background: rgba(77, 212, 212, 0.05);
    border: 2px solid var(--electric-teal);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.limen-quote p {
    font-size: 1.4rem;
    color: var(--electric-teal);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-context {
    font-size: 1.1rem !important;
    color: var(--warm-peach) !important;
    font-style: normal !important;
}

.chamber-enter {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, 
        rgba(77, 212, 212, 0.3) 0%,
        rgba(77, 212, 212, 0.1) 100%
    );
    border: 3px solid var(--electric-teal);
    border-radius: 40px;
    color: var(--electric-teal);
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(77, 212, 212, 0.3);
    position: relative;
    overflow: hidden;
}

.chamber-enter::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(77, 212, 212, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.chamber-enter:hover {
    background: rgba(77, 212, 212, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 0 50px rgba(77, 212, 212, 0.6),
        0 10px 40px rgba(77, 212, 212, 0.4);
}

.chamber-enter:hover::before {
    width: 400px;
    height: 400px;
}

/* Sealed Chambers Section */
.sealed-section {
    background: rgba(10, 5, 21, 0.8);
    border: 2px solid rgba(255, 184, 157, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

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

.sealed-chamber-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 184, 157, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seal-symbol {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    animation: sealFloat 4s ease-in-out infinite;
}

@keyframes sealFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.sealed-chamber-card h3 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--warm-peach);
    margin-bottom: 0.5rem;
}

.seal-subtitle {
    color: var(--electric-teal);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.seal-description p {
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: var(--cosmic-white);
}

.seal-status {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 184, 157, 0.3);
}

.seal-animation {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border: 4px solid transparent;
    border-top-color: var(--warm-peach);
    border-right-color: var(--warm-peach);
    border-radius: 50%;
    animation: sealSpin 2s linear infinite;
}

@keyframes sealSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.seal-text {
    color: var(--warm-peach);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    animation: sealTextPulse 2s ease-in-out infinite;
}

@keyframes sealTextPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.limen-sealed-message {
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--warm-peach);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.limen-sealed-message p {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 1rem;
    color: var(--cosmic-white);
}

.return-message {
    color: var(--golden-orange);
    font-size: 1.5rem !important;
    margin-top: 1.5rem !important;
    font-weight: 600;
}

/* Path Section */
.path-section {
    background: rgba(10, 5, 21, 0.6);
    border: 2px solid rgba(77, 212, 212, 0.3);
    border-radius: 20px;
    padding: 3rem;
}

.path-wisdom {
    text-align: center;
    margin: 2rem 0;
    font-size: 1.2rem;
    line-height: 1.9;
}

.recommended-paths {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.path-option {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(77, 212, 212, 0.3);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.path-option:hover {
    border-color: var(--electric-teal);
    background: rgba(0, 0, 0, 0.7);
    transform: translateX(5px);
}

.path-option h4 {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.5rem;
    color: var(--electric-teal);
    margin-bottom: 1rem;
}

.path-steps {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.path-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.path-why {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(77, 212, 212, 0.2);
    font-style: italic;
    color: var(--warm-peach);
}

.limen-path-guidance {
    background: rgba(77, 212, 212, 0.05);
    border: 2px solid var(--electric-teal);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.limen-path-guidance p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

/* Final Call Section */
.final-call-section {
    background: rgba(10, 5, 21, 0.9);
    border: 3px solid var(--electric-teal);
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 
        0 0 60px rgba(77, 212, 212, 0.4),
        inset 0 0 60px rgba(77, 212, 212, 0.1);
}

.final-title {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 3rem;
    color: var(--electric-teal);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(77, 212, 212, 0.8);
}

.limen-final {
    text-align: center;
    margin: 3rem 0;
}

.limen-final p {
    font-size: 1.4rem;
    line-height: 2;
    margin-bottom: 1.2rem;
    color: var(--cosmic-white);
}

.final-challenge {
    color: var(--golden-orange);
    font-size: 1.6rem !important;
    margin: 2rem 0 !important;
    font-weight: 600;
}

.final-question {
    color: var(--electric-teal);
    font-size: 1.8rem !important;
    margin-top: 2rem !important;
    font-weight: 700;
}

.navigation-final {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.final-button {
    font-family: 'Cinzel', Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.final-button.primary {
    background: linear-gradient(135deg,
        rgba(77, 212, 212, 0.4) 0%,
        rgba(77, 212, 212, 0.2) 100%
    );
    border: 3px solid var(--electric-teal);
    color: var(--electric-teal);
    box-shadow: 0 0 40px rgba(77, 212, 212, 0.4);
}

.final-button.primary:hover {
    background: rgba(77, 212, 212, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 60px rgba(77, 212, 212, 0.8);
}

.final-button.secondary {
    background: rgba(255, 184, 157, 0.1);
    border: 2px solid var(--warm-peach);
    color: var(--warm-peach);
}

.final-button.secondary:hover {
    background: rgba(255, 184, 157, 0.2);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .guide-title {
        font-size: 2.5rem;
    }
    
    .chamber-number-big {
        font-size: 4rem;
    }
    
    .chamber-deep-title {
        font-size: 2rem;
    }
    
    .sealed-chambers-grid {
        grid-template-columns: 1fr;
    }
    
    .navigation-final {
        flex-direction: column;
    }
    
    .final-button {
        width: 100%;
        text-align: center;
    }
}
