.ros-header {
    padding: 20px 20px 22px 20px;
    background: linear-gradient(165deg, #123A3E 0%, #0B2426 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(11, 36, 38, 0.25);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.18); }

.ros-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.75;
    margin-bottom: 6px;
}
.ros-header h1 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 700;
    margin-bottom: 4px;
}
.ros-subhead {
    font-size: 14px;
    font-weight: 300;
    opacity: 0.7;
}

/* ============================================================
   BEAD COUNTER
   ============================================================ */
.ros-counter-card {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 26px 20px 22px 20px;
    margin: 0 20px 24px 20px;
    border: 1px solid #EFEAE4;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.ros-bead-ring {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 8px;
    max-width: 320px;
    margin: 0 auto 16px auto;
}
.ros-bead {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #F0EBE4;
    border: 2px solid #E3DBD2;
    transition: 0.2s;
}
.ros-bead.is-active {
    background: #123A3E;
    border-color: #123A3E;
    transform: scale(1.12);
}

.ros-decade-label {
    font-size: 13px;
    color: #8A7A7A;
    font-weight: 400;
    margin-bottom: 18px;
}
.ros-decade-label span {
    color: #2A2624;
    font-weight: 600;
}

.ros-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.ros-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #123A3E, #0B2426);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(18, 58, 62, 0.25);
    transition: 0.15s;
}
.ros-btn:hover { transform: translateY(-1px); }
.ros-btn--ghost {
    background: #F5F0EA;
    color: #4A4442;
    box-shadow: none;
    border: 1px solid #EFEAE4;
}

/* ============================================================
   MYSTERY SELECT
   ============================================================ */
.section-block {
    padding: 0 20px 24px 20px;
}
.section-heading h2 {
    font-size: 15px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 12px;
}
.section-heading h2 i {
    color: #123A3E;
    margin-right: 6px;
}

.ros-mystery-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ros-mystery-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: 0.15s;
}
.ros-mystery-item.is-active {
    border-color: #123A3E;
    background: rgba(18, 58, 62, 0.05);
}
.ros-mystery-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #F5F0EA;
    color: #123A3E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.ros-mystery-item.is-active .ros-mystery-icon {
    background: #123A3E;
    color: #fff;
}
.ros-mystery-meta h4 {
    font-size: 14px;
    font-weight: 500;
    color: #2A2624;
}
.ros-mystery-meta p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}
