/* Single Airdrop Page Styles */
.airdrop-banner img {
    width: 800px;
    height: 200px;
    max-height: 200px; /* Adjust based on your preference */
    object-fit: cover;
    border-radius: 10px;
    padding-left: 240px;;
}

.airdrop-details {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

.airdrop-details h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.claim-button {
    background-color: #014CEC;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.claim-button:hover {
    background-color: #014CEC;
}

.share-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.share-button:hover {
    background-color: #218838;
}

.referral-button {
    background-color: #ffcc00;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px; /* Space between buttons */
    transition: background-color 0.3s, color 0.3s;
}

.referral-button.copied {
    background-color: #28a745;
    color: white;
}


.steps-to-participate {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 20px auto;
}

.steps-to-participate h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step {
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.step a {
    color: #0052FE;
    text-decoration: none;
    font-weight: bold;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.step a:hover {
    background-color: #0052FE;
    color: white;
}

.social-share {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.social-share h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.social-media-share {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-media-share a {
    color: #333;
    font-size: 1.5rem;
}

.social-media-share a:hover {
    color: #0052FE;
}

.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #014CEC;
    border-radius: 30px;
    box-shadow: 0 2px 4px rgb(255, 255, 255);
    z-index: 1000;
    max-width: 400px;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.popup-content {
    padding: 20px;
}

.popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    color: white;
}

.popup h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.social-media-popup {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-media-popup a {
    color: white;
    font-size: 1.5rem;
}

.social-media-popup a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .airdrop-details, .steps-to-participate, .social-share {
        margin: 10px;
        padding: 10px;
    }

    .steps-to-participate h2, .social-share h2 {
        font-size: 1.25rem;
    }
}
