/* Reset */
.airdrop-grid {
    all: initial;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.airdrop-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.airdrop-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.airdrop-social {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 25px 0;
}

.airdrop-social a {
    font-size: 42px; /* İkon boyutu büyütüldü */
    color: var(--card-color, #2ecc71); /* Varsayılan renk */
    transition: all 0.3s ease;
    text-decoration: none !important;
}

/* X (Twitter) İkonu */
.airdrop-social .fa-x-twitter {
    color: #000000; /* X resmi rengi */
    font-size: 46px; /* Diğerlerinden biraz daha büyük */
}

/* Diğer Platformlar */
.airdrop-social .fa-telegram { color: #0088cc; } /* Telegram rengi */
.airdrop-social .fa-chart-line { color: #1762b4; } /* CoinMarketCap rengi */
.airdrop-social .fa-rocket { color: #ff6b6b; } /* Diğer sosyal medya rengi */

/* İkon Hover Efekti */
.airdrop-social a:hover {
    transform: scale(1.2); /* İkon büyütme */
    filter: drop-shadow(0 3px 6px rgba(46, 204, 113, 0.3)); /* Hafif gölge */
}

.join-button {
    display: inline-block;
    background: #2ecc71;
    color: #fff !important;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Token Sembolü */
.token-symbol {
    font-size: 20px;
    color: #2c3e50;
    margin: 15px 0;
    font-weight: bold;
}

/* Ekstra Bilgiler */
.airdrop-meta {
    text-align: left;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.airdrop-meta p {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
}