
.points-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
    color: #ddd;
}

.points-display i {
    color: #efc75e;
    font-size: 1.2em;
} 
/* compte à rebours */
.countdown-display {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9em;
    color: #666;
}

.countdown-progress {
    width: 100%;
    height: 4px;
    background: #040303;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 5px;
}

.countdown-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #efc75e, #fff, #efc75e);
    width: 0%;
    transition: width 1s linear;
}

.next-reward {
    font-size: 0.8em;
    color: #666;
    margin-top: 5px;
}

/* Styles pour le message de wallet requis */
.wallet-required-message {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.wallet-required-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.wallet-required-message h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.wallet-required-message p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.wallet-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.wallet-action-button {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.wallet-action-button.primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.wallet-action-button.secondary {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--text-color);
}

.wallet-action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(239, 199, 94, 0.2);
}

/* Style pour l'onglet désactivé */
.tab-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
} 
