/**
 * Osho Zen Tarot - Scoped Premium Styles
 */

#osho-app {
    --t: #C4714A;
    --td: #A85A35;
    --tl: #D4876A;
    --nu: #E8D5C4;
    --nl: #F2E8DF;
    --cr: #FAF6F2;
    --bk: #5C4038;
    --mi: #8A6858;
    --dk: #2A1A14;
    --terra: var(--t);
    --sans: 'DM Sans', sans-serif;
    --serif: 'Cormorant Garamond', serif;

    font-family: 'DM Sans', sans-serif;
    background: #F2EAE1;
    color: var(--dk);
    min-height: 600px;
    position: relative;
    line-height: 1.6;
}

#osho-app *,
#osho-app *::before,
#osho-app *::after {
    box-sizing: border-box;
}

/* NAV */
#osho-app .nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 246, 242, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 113, 74, 0.1);
}

#osho-app .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--dk);
}

#osho-app .nav-logo em {
    color: var(--t);
    font-style: italic;
}

#osho-app .nav-back {
    font-size: 11px;
    color: var(--mi);
    cursor: pointer;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .2s;
}

#osho-app .nav-back:hover {
    color: var(--t);
}

/* PROGRESS BAR */
#osho-app .pbar {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    z-index: 199;
    padding: 7px 40px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: rgba(250, 246, 242, 0.9);
    border-bottom: 1px solid rgba(196, 113, 74, 0.06);
}

#osho-app .pbar.on {
    display: flex;
}

#osho-app .pi {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: var(--mi);
    opacity: .38;
    transition: all .3s;
    font-weight: 400;
}

#osho-app .pi.active {
    opacity: 1;
    color: var(--t);
}

#osho-app .pi.done {
    opacity: .65;
    color: var(--t);
}

#osho-app .pi-n {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 500;
}

#osho-app .pi.done .pi-n {
    background: var(--t);
    border-color: var(--t);
    color: #fff;
}

#osho-app .pi-line {
    width: 18px;
    height: 1px;
    background: rgba(196, 113, 74, .18);
}

/* STEPS */
#osho-app .step {
    display: none;
    min-height: 80vh;
    padding: 140px 24px 60px;
    position: relative;
    z-index: 1;
}

#osho-app #s1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 15% 20%, rgba(196, 113, 74, .10) 0%, transparent 62%), radial-gradient(ellipse 55% 70% at 88% 82%, rgba(232, 213, 196, .45) 0%, transparent 58%);
    pointer-events: none;
}

#osho-app #s2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 82% 28%, rgba(196, 113, 74, .07) 0%, transparent 56%);
    pointer-events: none;
}

#osho-app #s3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 72% 58% at 50% 0%, rgba(196, 113, 74, .08) 0%, transparent 50%);
    pointer-events: none;
}

#osho-app #s4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 66% 66% at 50% 50%, rgba(232, 213, 196, .36) 0%, transparent 60%);
    pointer-events: none;
}

#osho-app #s5::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 56% 56% at 50% 36%, rgba(196, 113, 74, .09) 0%, transparent 56%), radial-gradient(ellipse 74% 36% at 50% 100%, rgba(232, 213, 196, .36) 0%, transparent 50%);
    pointer-events: none;
}

#osho-app .step.on {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

/* HERO ANIMATIONS */
@keyframes fu {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes orb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes hpulse {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

#osho-app .orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: orb linear infinite;
    z-index: -1;
}

#osho-app .o1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(196, 113, 74, .08), transparent 70%);
    top: -100px;
    right: -100px;
    animation-duration: 18s;
}

#osho-app .o2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(232, 213, 196, .3), transparent 70%);
    bottom: 50px;
    left: -50px;
    animation-duration: 22s;
    animation-delay: -5s;
}

/* HERO CONTENT */
#osho-app .hero {
    max-width: 650px;
    text-align: center;
}

#osho-app .bmark {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--t);
    margin-bottom: 28px;
    opacity: 0;
    animation: fu 0.9s ease 0.1s forwards;
}

#osho-app .h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 8vw, 70px);
    font-weight: 300;
    line-height: 1.07;
    letter-spacing: -0.02em;
    color: var(--dk);
    margin-bottom: 20px;
    opacity: 0;
    animation: fu 0.9s ease 0.25s forwards;
}

#osho-app .h1 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .hsub {
    font-size: 16px;
    font-weight: 300;
    color: var(--mi);
    line-height: 1.72;
    max-width: 400px;
    margin: 0 auto 36px;
    opacity: 0;
    animation: fu 0.9s ease 0.42s forwards;
}

#osho-app .btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #fff;
    background: var(--t);
    border: none;
    border-radius: 100px;
    padding: 16px 52px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 15px rgba(196, 113, 74, 0.2);
}

#osho-app .btn:hover {
    background: var(--td);
    transform: translateY(-2px);
    box-shadow: 0 13px 34px rgba(196, 113, 74, 0.34);
}

#osho-app .btn:disabled {
    background: #E8D5C4;
    color: #8A6858;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 1;
}

/* CARD FANNING */
#osho-app .pfan-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 52px;
    opacity: 0;
    animation: fu 1.1s ease 0.8s forwards;
}

#osho-app .pfan {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#osho-app .pcard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#osho-app .pcard {
    width: 76px;
    height: 116px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(196, 113, 74, 0.3);
    background: #fff;
    transition: transform 0.3s ease;
    animation: cardLiving 3.2s ease-in-out infinite;
}

#osho-app .pcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#osho-app .pcard-item:nth-child(1) .pcard {
    transform: rotate(-8deg) translateY(8px);
    z-index: 1;
    animation-duration: 2.8s;
}

#osho-app .pcard-item:nth-child(2) .pcard {
    transform: rotate(0deg);
    z-index: 3;
    animation-duration: 3.2s;
}

#osho-app .pcard-item:nth-child(3) .pcard {
    transform: rotate(8deg) translateY(8px);
    z-index: 2;
    animation-duration: 3.6s;
}

@keyframes cardLiving {
    0%, 100% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 0 5px rgba(212, 180, 140, 0.1);
        filter: brightness(1);
    }
    50% {
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 0 15px rgba(212, 180, 140, 0.4);
        filter: brightness(1.08);
    }
}


#osho-app .pcard-item:nth-child(2) {
    margin: 0 -10px;
    z-index: 3;
}

#osho-app .fan-labels {
    display: flex;
    justify-content: center;
    gap: 44px;
    margin-top: 12px;
}

#osho-app .fan-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--mi);
    font-weight: 400;
}

/* MINIFAN (Step 4) */
#osho-app .minifan {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

#osho-app .mc {
    width: 60px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(196, 113, 74, 0.2);
    border: 1px solid rgba(196, 113, 74, 0.25);
    background: #fff;
}

#osho-app .tc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#osho-app .tnum {
    font-size: 10px;
    font-family: 'DM Sans', sans-serif;
    color: var(--mi);
    font-weight: 300;
    letter-spacing: 0.04em;
}

#osho-app .tname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 11px;
    font-style: italic;
    color: var(--t);
    text-align: center;
    max-width: 74px;
    line-height: 1.25;
    min-height: 14px;
}

#osho-app .tc-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t);
    border: 1px dashed var(--t);
}

#osho-app .mc:nth-child(1) {
    transform: rotate(-8deg) translateX(5px);
    z-index: 1;
}

#osho-app .mc:nth-child(2) {
    transform: rotate(2deg) translateY(-6px);
    z-index: 3;
    margin: 0 -12px;
}

#osho-app .mc:nth-child(3) {
    transform: rotate(10deg) translateX(-5px);
    z-index: 2;
}

#osho-app .mc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

#osho-app .mc-lbl {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--t);
    font-weight: 500;
}

/* STEP 4: EMAIL */
#osho-app .ewrap {
    max-width: 500px;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: center;
}

#osho-app .ebox {
    background: #fff;
    border-radius: 22px;
    padding: 38px 34px;
    border: 1.5px solid rgba(196, 113, 74, 0.09);
    box-shadow: 0 16px 68px rgba(42, 26, 20, 0.07);
}

#osho-app .eh2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 31px;
    font-weight: 400;
    color: var(--dk);
    line-height: 1.2;
    margin-bottom: 8px;
}

#osho-app .eh2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .email-sub-copy {
    font-size: 14px;
    font-weight: 300;
    color: var(--mi);
    line-height: 1.6;
    margin-bottom: 24px;
}

#osho-app .field {
    margin-bottom: 15px;
    text-align: left;
}

#osho-app .field label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bk);
    margin-bottom: 8px;
}

#osho-app .field input {
    width: 100%;
    padding: 13px 18px;
    background: var(--cr);
    border: 1.5px solid rgba(196, 113, 74, 0.13);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--dk);
    outline: none;
    transition: all 0.3s;
}

#osho-app .field input:focus {
    border-color: var(--t);
    box-shadow: 0 0 0 3px rgba(196, 113, 74, 0.09);
    background: #fff;
}

#osho-app .field input::placeholder {
    color: rgba(90, 64, 56, 0.32);
}

/* STEP LABELS & TITLES */
#osho-app .slbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--t);
    margin-bottom: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}

#osho-app .slbl::before,
#osho-app .slbl::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--t);
    opacity: 0.36;
}

#osho-app .h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(27px, 4.5vw, 40px);
    font-weight: 400;
    line-height: 1.14;
    color: var(--dk);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    text-align: center;
}

#osho-app .h2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .theme-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--t);
    line-height: 1.65;
    text-align: center;
    max-width: 440px;
    margin: 0 auto 34px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
}

/* THEMES */
#osho-app .tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 35px;
}

@media (max-width: 768px) {
    #osho-app .tgrid {
        grid-template-columns: 1fr;
    }
}

#osho-app .tc {
    background: #fff;
    border: 1.5px solid rgba(196, 113, 74, .12);
    border-radius: 20px;
    padding: 30px 20px;
    cursor: pointer;
    transition: all .4s cubic-bezier(.2, 1, .3, 1);
    position: relative;
    text-align: left;
}

#osho-app .tc:hover {
    border-color: var(--tl);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(196, 113, 74, 0.15);
}

#osho-app .tc.active {
    border-color: var(--t);
    background: linear-gradient(145deg, #ffffff, var(--nl));
    box-shadow: 0 20px 50px rgba(196, 113, 74, 0.2);
}

#osho-app .tc-ck {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    background: var(--t);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}

#osho-app .tc.active .tc-ck {
    opacity: 1;
    transform: scale(1);
}

#osho-app .tc-ck svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    stroke-width: 3;
    fill: none;
}

#osho-app .tc-ic {
    font-size: 26px;
    margin-bottom: 15px;
    width: 46px;
    height: 46px;
    background: var(--nl);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

#osho-app .tc:hover .tc-ic,
#osho-app .tc.active .tc-ic {
    background: var(--t);
    transform: rotate(-4deg) scale(1.06);
}

#osho-app .tc-nm {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
    line-height: 1.2;
}

#osho-app .tc-tg {
    font-size: 10px;
    color: var(--t);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

#osho-app .tc-ds {
    font-size: 12px;
    color: var(--mi);
    font-weight: 300;
    line-height: 1.65;
    flex: 1;
}

#osho-app .tc-ln {
    height: 2px;
    background: linear-gradient(90deg, var(--t), transparent);
    border-radius: 2px;
    margin-top: 13px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

#osho-app .tc:hover .tc-ln,
#osho-app .tc.active .tc-ln {
    transform: scaleX(1);
}

/* WHEEL CONTAINER */
#osho-app .wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
    max-width: 90vw;
    max-height: 90vw;
    margin: 0 auto;
}

#osho-app .wheel-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #FAFAF8, #F2E8DF);
    border-radius: 50%;
    border: 2px solid rgba(196, 113, 74, 0.28);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: 0 4px 18px rgba(196, 113, 74, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

#osho-app .hub-sym {
    font-size: 24px;
    color: var(--t);
    animation: hpulse 3s ease-in-out infinite;
}

#osho-app .hub-txt {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--mi);
    margin-top: 2px;
}

#osho-app .wheel-ptr {
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 24px;
    background: linear-gradient(180deg, var(--t), transparent);
    border-radius: 3px;
    z-index: 21;
    filter: drop-shadow(0 0 5px rgba(196, 113, 74, 0.7));
}

#osho-app .wheel-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

#osho-app .spin-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--t);
    background: transparent;
    border: 1.5px solid rgba(196, 113, 74, 0.36);
    border-radius: 100px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.3s;
}

#osho-app .spin-btn:hover {
    background: rgba(196, 113, 74, 0.06);
    border-color: var(--t);
}

#osho-app .w-hint {
    font-size: 12px;
    color: var(--mi);
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

/* TRAY */
#osho-app .tray {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

#osho-app .tslot {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.3;
    transition: opacity 0.5s;
}

#osho-app .tslot.filled {
    opacity: 1;
}

#osho-app .tc-img {
    width: 65px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 1.5px solid var(--t);
    margin-bottom: 8px;
    background: var(--nl);
}

#osho-app .tc-empty {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t);
    border: 1px dashed var(--t);
}

/* MODAL / GATE */
#osho-app .s-gate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 26, 20, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#osho-app .gate-box {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(196, 113, 74, 0.1);
}

#osho-app .gate-icon {
    font-size: 40px;
    color: var(--t);
    margin-bottom: 20px;
}

#osho-app .gate-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

#osho-app .gate-h2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .gate-txt {
    font-size: 15px;
    color: var(--mi);
    margin-bottom: 30px;
}

#osho-app .gate-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* STEP 5: OUTCOME CONTENT */
#osho-app #s5 {
    padding: 56px 24px;
    position: relative;
}

#osho-app #s5::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 56% 56% at 50% 36%, rgba(196, 113, 74, .09) 0%, transparent 56%),
        radial-gradient(ellipse 74% 36% at 50% 100%, rgba(232, 213, 196, .36) 0%, transparent 50%);
    pointer-events: none;
}

#osho-app .cwrap {
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

#osho-app .cicon {
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, var(--t), var(--tl));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
    margin: 0 auto 24px;
    box-shadow: 0 14px 36px rgba(196, 113, 74, 0.3);
    animation: popIn .6s cubic-bezier(.34, 1.56, .64, 1) forwards;
}

#osho-app .ch2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--dk);
    line-height: 1.14;
    margin-bottom: 13px;
}

#osho-app .ch2 em {
    font-style: italic;
    color: var(--t);
}

#osho-app .ctxt {
    font-size: 14px;
    font-weight: 300;
    color: var(--mi);
    line-height: 1.72;
    margin-bottom: 26px;
}

#osho-app .sitbox {
    background: var(--nl);
    border-left: 3px solid var(--t);
    border-radius: 0 13px 13px 0;
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 26px;
}

#osho-app .sitlbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--t);
    margin-bottom: 5px;
}

#osho-app .sittxt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--dk);
    line-height: 1.42;
}

#osho-app .ctacopy {
    font-size: 13px;
    color: var(--mi);
    font-weight: 300;
    margin-bottom: 11px;
}


/* Tinh chỉnh kh vực nút bấm */
#osho-app .gbtn {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--mi);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    opacity: .65;
    transition: opacity .2s;
}

#osho-app .tcta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#osho-app .reveal-btn-wrap {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

:where(.wp-site-blocks)>* {
    margin-block-start: 0;
}

/* REVEAL WRAP (Step 5) */
#osho-app .reveal-wrap {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

#osho-app .step.on .reveal-wrap {
    opacity: 1;
    transform: translateY(0);
}

#osho-app .reveal-header {
    margin-bottom: 50px;
}

#osho-app .reveal-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 600px) {
    #osho-app .reveal-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

#osho-app .rcard-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
}

/* 3D Card Flip Reveal */
#osho-app .card-flipper {
    perspective: 1000px;
}
#osho-app .card-inner {
    position: relative;
    width: 140px;
    height: 210px;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}
#osho-app .card-inner.flipped {
    transform: rotateY(180deg);
}
#osho-app .card-front-face, #osho-app .card-back-face {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(196, 113, 74, 0.18);
    border: 1px solid rgba(196, 113, 74, 0.2);
}
#osho-app .card-back-face {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#osho-app .card-back-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#osho-app .card-front-face {
    background: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
}

#osho-app .rc-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--t);
    margin-bottom: 12px;
    font-weight: 500;
}

#osho-app .rc-box {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    background: #fff;
    overflow: hidden;
}

#osho-app .rc-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#osho-app .rc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--dk);
    line-height: 1.2;
}

#osho-app .reveal-narrative {
    text-align: left;
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    border: 1.5px solid rgba(196, 113, 74, 0.08);
    box-shadow: 0 30px 90px rgba(42, 26, 20, 0.05);
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--dk);
    font-family: 'Cormorant Garamond', serif;
}

#osho-app .reveal-narrative p {
    margin-bottom: 25px;
}

#osho-app .reveal-narrative .card-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--t);
    margin-bottom: 8px;
    font-weight: 600;
}

#osho-app .reveal-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(196, 113, 74, 0.1);
}

#osho-app .f-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 600px) {
    #osho-app .f-btns {
        flex-direction: column;
        align-items: stretch;
    }
    #osho-app .reveal-narrative {
        padding: 30px 20px;
        font-size: 16px;
    }
}

/* LOADING OVERLAY */
#osho-app .loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(250, 246, 242, 0.95);
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#osho-app .loading-overlay.active {
    display: flex;
}

#osho-app .lotus-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#osho-app #lotusCanvas {
    display: block;
    max-width: 280px;
    height: auto;
}

#osho-app .lotus-text-area {
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    padding: 0 24px;
}

#osho-app .lotus-main {
    font-family: var(--serif);
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 300;
    font-style: italic;
    color: var(--dk);
    opacity: 0;
    transition: opacity 1s ease;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 10px;
}

#osho-app .lotus-main.on {
    opacity: 0.85;
}

#osho-app .lotus-cue {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--t);
    opacity: 0;
    transition: opacity 0.8s ease;
    font-weight: 500;
}

#osho-app .lotus-cue.on {
    opacity: 0.75;
}

/* --- NEW PICK YOUR CARDS SCREEN (HOLD & DRAW) --- */
#osho-app #s3-5 {
    background: var(--cr);
    color: var(--mi);
    overflow: hidden;
}

#osho-app #cardCanvas { position:absolute; inset:0; z-index:2; }
#osho-app #pCanvas    { position:absolute; inset:0; z-index:5; pointer-events:none; }

#osho-app #drawOver {
    position: absolute; inset: 0; z-index: 20;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-start;
    padding: 32px 24px;
    pointer-events: none;
}

#osho-app #drawHdr { text-align: center; }

#osho-app #instW {
    position: absolute; z-index: 8; pointer-events: none;
    left: 0; right: 0; text-align: center;
    transition: opacity .5s;
}

#osho-app .dmi {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(18px, 4vw, 26px);
    color: var(--dk);
    margin-bottom: 6px;
}

#osho-app .dsi {
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
    color: rgba(138, 104, 88, 0.6);
    text-transform: uppercase;
}

#osho-app #holdRing {
    position: absolute; z-index: 9;
    opacity: 0; transition: opacity .3s;
    pointer-events: none;
}

#osho-app #drawSt {
    position: absolute; left: 0; right: 0; bottom: 180px;
    text-align: center; z-index: 18; pointer-events: none;
}

#osho-app .dst {
    font-size: 10px; font-weight: 300; letter-spacing: .2em;
    color: var(--mi); text-transform: uppercase; margin-bottom: 10px;
}

#osho-app .dots { display: flex; gap: 10px; justify-content: center; }
#osho-app .dot {
    width: 7px; height: 7px; border-radius: 50%;
    border: 1.5px solid rgba(196, 113, 74, 0.3);
    background: transparent; transition: all .45s;
}
#osho-app .dot.on {
    background: var(--t); border-color: var(--t);
    box-shadow: 0 0 10px rgba(196, 113, 74, 0.6);
}

#osho-app #chosen {
    position: absolute; bottom: 0; left: 0; right: 0; height: 160px;
    display: flex; align-items: center; justify-content: center; gap: 14px;
    z-index: 19; pointer-events: none; padding: 0 20px;
    background: linear-gradient(to top, rgba(250, 246, 242, .99) 60%, transparent);
}

#osho-app .cslot {
    flex: 1; max-width: 98px; height: 120px; border-radius: 8px;
    border: 1px dashed rgba(196, 113, 74, 0.25);
    display: flex; align-items: center; justify-content: center;
    position: relative; transition: border-color .4s;
}
#osho-app .cslot.filled { border-color: rgba(196, 113, 74, 0.5); border-style: solid; }

#osho-app .slbl-c {
    position: absolute; top: -20px; font-size: 7px; font-weight: 500;
    letter-spacing: .18em; color: var(--mi); text-transform: uppercase;
    white-space: nowrap;
}

#osho-app .rev-card {
    width: 82px; height: 114px; border-radius: 7px; overflow: hidden;
    border: 1px solid rgba(196, 113, 74, 0.35);
    box-shadow: 0 4px 16px rgba(42, 26, 20, 0.12);
    opacity: 0; transform: scale(.75) translateY(16px);
    transition: opacity .5s cubic-bezier(.23, 1, .32, 1), transform .5s cubic-bezier(.23, 1, .32, 1);
    background: #fff; display: flex; flex-direction: column;
}
#osho-app .rev-card.show { opacity: 1; transform: scale(1) translateY(0); }
#osho-app .rev-card canvas { width: 100%; flex: 1; display: block; }

#osho-app .rev-name {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 8.5px; color: var(--dk); text-align: center;
    padding: 3px 4px; background: var(--cr);
    border-top: 1px solid rgba(196, 113, 74, 0.12); line-height: 1.2;
}

#osho-app #flyCard { position: absolute; z-index: 50; pointer-events: none; display: none; transform-style: preserve-3d; }
#osho-app .flyb, #osho-app .flyf { position: absolute; inset: 0; border-radius: 9px; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
#osho-app .flyb { overflow: hidden; box-shadow: 0 12px 40px rgba(42, 26, 20, 0.18), 0 4px 12px rgba(196, 113, 74, 0.14); }
#osho-app .flyf {
    background: linear-gradient(155deg, var(--cr), var(--nl));
    border: 1px solid rgba(196, 113, 74, 0.35);
    transform: rotateY(180deg); display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 14px 10px;
    text-align: center; box-shadow: 0 12px 40px rgba(42, 26, 20, 0.15);
}
#osho-app .flyf::before { content: ''; position: absolute; inset: 8px; border: .5px solid rgba(196, 113, 74, 0.18); border-radius: 6px; }

#osho-app .ffpos  { font-size: 7.5px; font-weight: 500; letter-spacing: .18em; color: var(--t); text-transform: uppercase; margin-bottom: 8px; }
#osho-app .ffline { width: 18px; height: .5px; background: rgba(196, 113, 74, 0.4); margin: 8px auto; }
#osho-app .ffname { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 14px; color: var(--dk); line-height: 1.3; }

#osho-app #rdgBtn {
    position: absolute; z-index: 22; bottom: 170px; left: 50%;
    transform: translateX(-50%); font-family: 'DM Sans', sans-serif;
    font-weight: 500; font-size: 11px; letter-spacing: .2em;
    text-transform: uppercase; color: #fff; background: var(--t);
    border: none; border-radius: 40px; padding: 13px 32px;
    box-shadow: 0 6px 24px rgba(196, 113, 74, 0.35);
    opacity: 0; pointer-events: none; transition: opacity .5s;
    cursor: pointer; white-space: nowrap;
}
#osho-app #rdgBtn.show { opacity: 1; pointer-events: auto; }
#osho-app #rdgBtn:hover { background: var(--td); }