/* Live Claim Card CSS */
.live-claim-card {
    background: linear-gradient(135deg, #0f2027, #010101, #2c5364);
    color: #A3A1A1;
    padding: 20px;
    margin: 15px auto;
    border-radius: 25px;
    max-width: 350px;
    font-family: 'Nunito', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: float 4s ease-in-out infinite;
    transition: background 0.5s ease;
    flex-wrap: wrap;
    gap: 10px;
}

.claim-blinker {
    width: 10px;
    height: 10px;
    background: red; /* You already changed to red */
    border-radius: 50%;
    animation: blink 1s infinite;
    margin-right: 10px;
}

.claim-content {
    flex: 1;
    min-width: 0;
}

.claim-status {
    font-weight: bold;
    font-size: 18px;
}

.wallet-address,
.claimed-amount,
.claim-time {
    font-size: 16px;
    line-height: 1.5;
    word-break: break-word;
}

.claim-time {
    color: #ccc;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* Responsive adjustments for mobile */
@media (max-width: 480px) {
    .live-claim-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 8px;
    }

    .claim-status {
        font-size: 16px;
    }

    .wallet-address,
    .claimed-amount,
    .claim-time {
        font-size: 14px;
    }
}
