/* AirdropBank Frontend Styles */

.airdrop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.airdrop-item {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.airdrop-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.airdrop-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.airdrop-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.airdrop-content {
    padding: 20px;
}

.airdrop-content h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    line-height: 1.4;
}

.airdrop-content h3 a {
    color: #333;
    text-decoration: none;
}

.airdrop-content h3 a:hover {
    color: #0073aa;
}

.airdrop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.airdrop-meta span {
    padding: 4px 8px;
    border-radius: 4px;
    background: #f8f9fa;
    color: #666;
}

.status {
    font-weight: bold;
}

.status-upcoming {
    background: #fff3cd !important;
    color: #856404 !important;
}

.status-active {
    background: #d4edda !important;
    color: #155724 !important;
}

.status-ended {
    background: #f8d7da !important;
    color: #721c24 !important;
}

.airdrop-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.airdrop-terms {
    font-size: 12px;
    color: #888;
}

.airdrop-terms span {
    display: block;
    margin-bottom: 5px;
}

/* Single Airdrop Styles */
.airdrop-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.airdrop-single h1 {
    color: #333;
    margin-bottom: 20px;
}

.airdrop-featured-image {
    text-align: center;
    margin-bottom: 30px;
}

.airdrop-featured-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.airdrop-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    min-width: 100px;
    color: #333;
}

.airdrop-description,
.airdrop-requirements {
    margin-bottom: 30px;
}

.airdrop-description h3,
.airdrop-requirements h3 {
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.airdrop-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.airdrop-social li a {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease;
}

.airdrop-social li a:hover {
    background: #005a87;
}

/* Responsive Design */
@media (max-width: 768px) {
    .airdrop-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .airdrop-content {
        padding: 15px;
    }
    
    .airdrop-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .airdrop-single {
        padding: 15px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .airdrop-social ul {
        flex-direction: column;
    }
}

/* Filter Styles */
.airdrop-filters {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.airdrop-filters h3 {
    margin: 0 0 15px 0;
    color: #333;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.filter-group select,
.filter-group input {
    width: 100%;
    max-width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-buttons {
    margin-top: 15px;
}

.filter-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
}

.filter-button:hover {
    background: #005a87;
}

.filter-button.reset {
    background: #666;
}

.filter-button.reset:hover {
    background: #555;
}