.dr-mini-root {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.dr-mini-root::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.dr-mini-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.dr-mini-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dr-mini-icon {
    font-size: 1.5rem;
}

.dr-mini-title h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.dr-mini-more-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.dr-mini-more-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-color: #6366f1;
}

.dr-mini-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.dr-mini-stat {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.dr-mini-stat-label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 4px;
    font-weight: 500;
}

.dr-mini-stat-value {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.dr-mini-next-reward {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.dr-mini-reward-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.2s;
}

.dr-mini-reward-preview.dr-mini-available {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.dr-mini-reward-preview.dr-mini-waiting {
    opacity: 0.7;
}

.dr-mini-reward-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dr-mini-reward-icon img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.dr-mini-reward-info {
    flex: 1;
    text-align: left;
}

.dr-mini-reward-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.dr-mini-reward-day {
    color: #888;
    font-size: 0.8rem;
}

.dr-mini-claim-btn {
    padding: 8px 16px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.dr-mini-claim-btn:hover {
    background: #4f46e5;
    transform: translateY(-1px);
}

.dr-mini-waiting-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: #888;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.dr-mini-waiting-status svg {
    animation: dr-mini-pulse 2s infinite;
}

.dr-mini-completed {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 10px;
    text-align: left;
}

.dr-mini-completed-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.dr-mini-completed-text {
    flex: 1;
}

.dr-mini-completed-text div {
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 2px;
}

.dr-mini-completed-text small {
    color: #4ade80;
    font-size: 0.8rem;
}

.dr-mini-progress {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.dr-mini-progress-text {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-align: center;
}

.dr-mini-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.dr-mini-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
    transition: width 0.5s ease;
    position: relative;
}

.dr-mini-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: dr-mini-shimmer 2s infinite;
}

.dr-mini-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.dr-mini-full-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    flex: 1;
    justify-content: center;
}

.dr-mini-full-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #6366f1;
    transform: translateY(-1px);
}

.dr-mini-best-streak {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Animations */
@keyframes dr-mini-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes dr-mini-shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .dr-mini-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .dr-mini-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dr-mini-best-streak {
        justify-content: center;
    }
}