 
.crypto-airdrops-widget {
    width: 350px;
    height: 250px;
    background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
    border-radius: 15px;
    padding: 15px;
    overflow-y: auto;
    color: #fff;
    font-family: Vazir, sans-serif;
    direction: rtl;
}

.airdrops-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.airdrops-item {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    transition: background 0.3s;
}

.airdrops-item a {
    text-decoration: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.airdrops-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.airdrop-name {
    font-weight: bold;
    font-size: 14px;
}

.airdrop-reward {
    font-size: 12px;
    opacity: 0.8;
}

.airdrop-status {
    font-size: 12px;
    border-radius: 8px;
    padding: 2px 6px;
}

.airdrops-item.active .airdrop-status {
    background: #27ae60;
}

.airdrops-item.upcoming .airdrop-status {
    background: #f39c12;
}

.airdrops-item.ended .airdrop-status {
    background: #c0392b;
}
