/* ===== Daily Rewards (dr-*) ===== */
.dr-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(2px)
}

.dr-overlay.hidden {
    display: none
}

.dr-shell {
    background: #1f1f23;
    color: #fff;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4);
    max-height: calc(100dvh - 40px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.dr-close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: #2c2c33;
    color: #fff;
    font-size: 20px;
    cursor: pointer
}

.dr-hero {
    position: relative;
    height: 180px;
    background: #141418
}

.dr-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .92
}

.dr-free-btn {
    position: absolute;
    right: 14px;
    top: 14px;
    background: #ff79e0;
    color: #1b1320;
    border: 0;
    border-radius: 18px;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer
}

.dr-title {
    font-weight: 800;
    font-size: 22px;
    padding: 14px 16px 6px
}

.dr-card {
    margin: 0 16px 16px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: #19191d;
    padding: 14px
}

.dr-days {
    display: grid;
    grid-template-columns:1fr;
    gap: 10px;
    margin: 6px 0 14px;
    padding: 0;
    list-style: none
}

.dr-day {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #111114;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 14px;
    border-radius: 12px
}

.dr-left {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d9d9e3
}

.dr-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #b176ff;
    display: inline-block;
    background: transparent
}

.dr-day.done .dr-dot {
    background: #ff79e0;
    border-color: #ff79e0
}

.dr-reward {
    font-weight: 800;
    color: #ffd97a
}

.dr-claim {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    background: #4b2b7e;
    color: #fff;
    font-weight: 800;
    cursor: pointer
}

.dr-claim:disabled {
    opacity: .6;
    cursor: not-allowed
}

.dr-lock {
    margin-top: 10px;
    text-align: center;
    color: #c2c2c9;
    font-size: 14px
}

.dr-balance {
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #1a1a1f;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.dr-balance-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}

.dr-coin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 24px;
    line-height: 1;
}

#dr-balance-amount {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.dr-subscribe-card {
    margin: 12px 16px 10px;
    padding: 22px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #1c1c21;
    border-radius: 18px;
    text-align: center;
}

.dr-sub-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
}

.dr-sub-sub {
    opacity: .85;
}

.dr-buy-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 12px 16px 18px;
    padding: 16px 18px;
    border: 0;
    border-radius: 16px;
    background: #4b2b7e;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.dr-buy-btn:hover {
    filter: brightness(1.06);
}

.dr-overlay {
    z-index: 2000;
    overflow: hidden;
}

