/* ===== YES/NO ORACLE PAGE ===== */

.yesno-page {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding: 40px 0;
}

.yesno-nav {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.yesno-nav .back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(232, 224, 208, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.yesno-nav .back-link:hover {
    color: #c9952b;
}

/* ===== PROMPT SECTION ===== */
.yesno-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 400;
    color: #f0e8d8;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.yesno-subtitle {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: rgba(232, 224, 208, 0.55);
    letter-spacing: 0.01em;
    margin-bottom: 24px;
}

.yesno-divider {
    color: #c9952b;
    font-size: 1.2rem;
    margin: 24px 0;
    opacity: 0.6;
}

.yesno-instruction {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: rgba(232, 224, 208, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ===== ORB ===== */
.yesno-orb {
    margin: 0 auto 24px;
}

.yesno-hint {
    font-size: 0.85rem;
    color: rgba(232, 224, 208, 0.4);
    font-style: italic;
    margin-bottom: 60px;
}

/* Orb pulse animation on click */
.orb-pulse .orb-inner {
    animation: orbPulse 1.2s ease-in-out;
}

.orb-pulse .orb-glow {
    animation: orbGlowPulse 1.2s ease-in-out;
}

@keyframes orbPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); filter: brightness(1.5); }
    100% { transform: scale(1); }
}

@keyframes orbGlowPulse {
    0% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0.4; transform: scale(1); }
}

/* ===== HOW IT WORKS ===== */
.yesno-how {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 40px;
    padding: 24px;
    border: 1px solid rgba(201, 149, 43, 0.15);
    border-radius: 12px;
    background: rgba(201, 149, 43, 0.03);
}

.yesno-how h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #c9952b;
    margin-bottom: 12px;
}

.yesno-how p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(232, 224, 208, 0.7);
    margin-bottom: 10px;
}

.yesno-how p:last-child {
    margin-bottom: 0;
}

/* ===== FAQ ===== */
.yesno-faq {
    text-align: left;
    max-width: 520px;
    margin: 0 auto 40px;
}

.yesno-faq h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: #c9952b;
    margin-bottom: 16px;
    text-align: center;
}

.yesno-faq details {
    border-bottom: 1px solid rgba(201, 149, 43, 0.1);
    padding: 12px 0;
}

.yesno-faq summary {
    cursor: pointer;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: rgba(232, 224, 208, 0.85);
    padding: 4px 0;
}

.yesno-faq details p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(232, 224, 208, 0.6);
    margin-top: 8px;
    padding-left: 12px;
}

/* ===== RESULT SECTION ===== */
.yesno-section {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.yesno-section.hidden {
    display: none;
}

.yesno-section.visible {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== VERDICT DISPLAY ===== */
.verdict-container {
    margin: 20px 0 40px;
    padding: 40px 20px;
}

.verdict-symbol {
    display: block;
    font-size: 2rem;
    margin-bottom: 12px;
    opacity: 0.7;
}

.verdict-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    transition: all 0.5s ease;
}

.verdict-text.animate-in {
    animation: verdictReveal 0.8s ease forwards;
}

@keyframes verdictReveal {
    0% { opacity: 0; transform: scale(0.5); filter: blur(10px); }
    60% { opacity: 1; transform: scale(1.05); filter: blur(0); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

.verdict-yes {
    color: #6edba0;
    text-shadow: 0 0 60px rgba(110, 219, 160, 0.2), 0 0 120px rgba(110, 219, 160, 0.06);
}

.verdict-no {
    color: #f08080;
    text-shadow: 0 0 60px rgba(240, 128, 128, 0.2), 0 0 120px rgba(240, 128, 128, 0.06);
}

.verdict-wait {
    color: #dbb352;
    text-shadow: 0 0 60px rgba(219, 179, 82, 0.2), 0 0 120px rgba(219, 179, 82, 0.06);
}

.verdict-message {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(232, 224, 208, 0.65);
    letter-spacing: 0.01em;
}

/* ===== POETRY SECTION ===== */
.verdict-poetry {
    margin: 32px 0;
    padding: 28px 24px;
    border-left: 1px solid rgba(201, 149, 43, 0.2);
    background: rgba(201, 149, 43, 0.015);
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.verdict-couplet {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e8e0d0;
    white-space: pre-line;
    margin-bottom: 16px;
}

.verdict-persian {
    font-family: 'Scheherazade New', serif;
    font-size: 1.2rem;
    line-height: 2;
    color: rgba(201, 149, 43, 0.7);
    direction: rtl;
    text-align: right;
    white-space: pre-line;
}

/* ===== INSIGHT ===== */
.verdict-insight {
    margin: 32px 0;
    padding: 20px;
    background: rgba(201, 149, 43, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(201, 149, 43, 0.1);
}

.verdict-theme {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #c9952b;
    background: rgba(201, 149, 43, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.verdict-interpretation {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232, 224, 208, 0.75);
    text-align: left;
}

/* ===== ACTIONS ===== */
.verdict-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin: 36px 0;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.primary-btn {
    background: rgba(201, 149, 43, 0.15);
    color: #c9952b;
    border: 1px solid rgba(201, 149, 43, 0.3);
}

.primary-btn:hover {
    background: rgba(201, 149, 43, 0.25);
    transform: translateY(-1px);
}

.secondary-btn {
    background: transparent;
    color: rgba(232, 224, 208, 0.7);
    border: 1px solid rgba(232, 224, 208, 0.15);
}

.secondary-btn:hover {
    color: #e8e0d0;
    border-color: rgba(232, 224, 208, 0.3);
}

.share-btn {
    background: transparent;
    color: rgba(232, 224, 208, 0.5);
    border: none;
    font-size: 0.85rem;
}

.share-btn:hover {
    color: #c9952b;
}

/* ===== CTA ===== */
.verdict-cta {
    margin: 40px 0;
    padding: 20px;
    border-top: 1px solid rgba(201, 149, 43, 0.1);
}

.verdict-cta p {
    font-size: 0.9rem;
    color: rgba(232, 224, 208, 0.5);
    margin-bottom: 12px;
}

.cta-link {
    color: #c9952b;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.cta-link:hover {
    opacity: 0.8;
}

/* ===== FOOTER ===== */
.yesno-footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 149, 43, 0.08);
    font-size: 0.8rem;
    color: rgba(232, 224, 208, 0.35);
}

.yesno-footer p {
    margin-bottom: 8px;
}

.yesno-footer a {
    color: rgba(232, 224, 208, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.yesno-footer a:hover {
    color: #c9952b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 480px) {
    .verdict-text {
        font-size: 3.5rem;
    }

    .verdict-poetry {
        padding: 16px;
    }

    .verdict-actions {
        padding: 0 12px;
    }
}
