/* ─────────────────────────────────────────────────────────────────────────────
   Seeker clues — toolbar, groups, buttons & hover card
──────────────────────────────────────────────────────────────────────────────*/
.toolbox-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    margin-right: 0.5rem;
}

.clue-group {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-right: 1px solid var(--border-default);
    padding-right: 0.75rem;
}

.clue-group:last-child {
    border-right: none;
}

.clue-group-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    padding-bottom: 0.15rem;
}

.clue-group-buttons {
    columns: 2;
    column-gap: 3px;
    flex: 1;
}

.clue-btn {
    font-size: 0.85rem;
    padding: 0.08rem 0.45rem;
    line-height: 1.4;
    white-space: nowrap;
    display: block;
    width: 100%;
    margin-bottom: 2px;
    text-align: left;
    border-color: var(--border-light) !important;
    color: var(--text-secondary) !important;
}
.clue-btn:hover {
    border-color: var(--accent-teal) !important;
    color: var(--accent-teal) !important;
}
.clue-btn:disabled {
    opacity: 0.4;
}

.clue-answered {
    background-color: var(--bg-elevated) !important;
    color: var(--accent-teal) !important;
    border-color: var(--accent-teal) !important;
}

.clue-pending {
    border-color: var(--accent-purple) !important;
    color: var(--accent-purple) !important;
    animation: clue-pulse 0.8s ease-in-out infinite !important;
}

.clue-denied {
    background-color: var(--bg-surface-3) !important;
    color: var(--text-muted) !important;
    border-color: var(--bg-elevated) !important;
    opacity: 0.5;
}

@keyframes clue-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* ── Clue hover card ────────────────────────────────────────────────────────*/
.clue-hover-card {
    position: fixed;
    z-index: 1000;
    width: 220px;
    background: var(--bg-surface-2);
    border: 2px solid var(--accent-purple);
    border-radius: 6px;
    box-shadow: 2px 4px 12px rgba(0,0,0,0.5);
    padding: 12px;
    transform: translateY(-100%) translateY(-8px);
    pointer-events: none;
    color: var(--text-primary);
}

.clue-hover-text {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.clue-hover-answer {
    height: 1.4em;
    line-height: 1.4;
    font-size: 0.85rem;
}

.clue-answer-label {
    font-weight: 700;
    color: var(--accent-teal);
}

/* ── Smoke Screen card effect ───────────────────────────────────────────*/
.clue-hover-card.smoked {
    position: relative;
    overflow: hidden;
}

/* Blur all the text content so it's unreadable */
.clue-hover-card.smoked .clue-hover-text,
.clue-hover-card.smoked .clue-hover-answer,
.clue-hover-card.smoked .clue-hover-cost-header,
.clue-hover-card.smoked .clue-hover-cost {
    filter: blur(4px);
    user-select: none;
}

/* Layered smoke-cloud overlay on top of the blurred content */
.clue-hover-card.smoked::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 30% 20%, rgba(200, 200, 200, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 70% 80%, rgba(180, 180, 180, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse 70% 40% at 50% 50%, rgba(220, 220, 220, 0.35) 0%, transparent 60%);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
}

.clue-hover-divider {
    height: 1px;
    background: var(--border-default);
    margin-bottom: 6px;
}

.clue-hover-cost-header {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.clue-hover-cost {
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--text-secondary);
}

/* Transition */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.15s ease;
}
.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

/* ── Clue cooldown thermometer bar ────────────────────────────────────────*/
.clue-cooldown-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    width: 20px;
    padding: 4px 0;
    align-self: center;
}

.clue-cooldown-track {
    flex: 1;
    width: 14px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.clue-cooldown-fill {
    width: 100%;
    background: linear-gradient(to bottom, #3498db, #0a4b7a);
    border-radius: 7px;
    transition: height 0.4s ease;
    flex-shrink: 0;
}

.clue-cooldown-penalty {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-teal);
    white-space: nowrap;
    line-height: 1;
}
