/* =========================================================
   RK DAILY TAP / MINING WIDGET
   CI: #1c2539 / #ea5e20
========================================================= */

.rk-daily-tap {
    background: linear-gradient(135deg, #1c2539 0%, #2d3a56 100%);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

/* Hintergrund-Deko */
.rk-daily-tap::before {
    content: '⚡';
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 90px;
    opacity: 0.05;
    pointer-events: none;
    line-height: 1;
}

/* ── Header ───────────────────────────────────────────── */

.rk-daily-tap__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.rk-daily-tap__title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.rk-daily-tap__rate-badge {
    background: rgba(234,94,32,0.25);
    color: #f97316;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    border: 1px solid rgba(234,94,32,0.35);
}

/* ── Rate Info ────────────────────────────────────────── */

.rk-daily-tap__rate-info {
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.rk-daily-tap__rate-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    flex-shrink: 0;
}

.rk-daily-tap__rate-value {
    font-size: 18px;
    font-weight: 800;
    color: #ea5e20;
    flex-shrink: 0;
}

.rk-daily-tap__rate-detail {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    width: 100%;
}

/* ── Tap Button ───────────────────────────────────────── */

.rk-daily-tap__btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    letter-spacing: 0.01em;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.rk-daily-tap__btn--active {
    background: #ea5e20;
    color: #fff;
    box-shadow: 0 4px 20px rgba(234,94,32,0.45);
}

.rk-daily-tap__btn--active:hover {
    background: #d95316;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(234,94,32,0.55);
}

.rk-daily-tap__btn--active:active {
    transform: scale(0.97);
}

.rk-daily-tap__btn--done {
    background: rgba(22,163,74,0.20);
    color: #4ade80;
    border: 1px solid rgba(22,163,74,0.30);
    cursor: default;
    font-size: 13px;
}

.rk-daily-tap__btn--pulse {
    animation: tap-pulse 0.5s ease;
}

@keyframes tap-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(234,94,32,0.7); }
    70%  { box-shadow: 0 0 0 16px rgba(234,94,32,0); }
    100% { box-shadow: 0 0 0 0 rgba(234,94,32,0); }
}

/* ── Done State / Countdown ───────────────────────────── */

.rk-daily-tap__done {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(22,163,74,0.12);
    border: 1px solid rgba(22,163,74,0.25);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.rk-daily-tap__done-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(22,163,74,0.25);
    color: #4ade80;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rk-daily-tap__done strong {
    font-size: 13px;
    color: #4ade80;
    display: block;
}

.rk-daily-tap__countdown-wrap {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.rk-daily-tap__countdown {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
}

/* ── Team Info ────────────────────────────────────────── */

.rk-daily-tap__team {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.rk-daily-tap__team-item {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.07);
    padding: 3px 10px;
    border-radius: 999px;
}
