/* Giveaways Page Styles - Dark Minimalist Design */

.giveaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.giveaway-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
}

.giveaway-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f33e96;
}

.giveaway-header {
    margin-bottom: 20px;
}

.giveaway-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 62, 150, 0.15);
    color: #f33e96;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(243, 62, 150, 0.3);
}

.giveaway-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.giveaway-body {
    margin-bottom: 25px;
}

.giveaway-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.giveaway-requirements {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.requirements-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.requirements-title::before {
    content: '\f0c9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #666;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.requirement-item i {
    color: #666;
    width: 16px;
    text-align: center;
}

.requirement-status {
    margin-left: auto;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
}

.requirement-status.success {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.requirement-status.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.giveaway-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.stat-item i {
    color: #ffffff;
    font-size: 16px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
}

.stat-value {
    color: var(--text-primary);
    font-weight: 600;
    margin-left: auto;
}

.giveaway-countdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(100, 100, 100, 0.1);
    border: 1px solid rgba(100, 100, 100, 0.3);
    color: #ffffff;
    font-weight: 500;
}

.giveaway-countdown i {
    color: #666;
}

.countdown {
    font-weight: 700;
    color: #666;
}

.giveaway-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.giveaway-join-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.secret-word-input {
    width: 100%;
}

.btn-participate {
    background: #666;
    color: #ffffff;
    border: 1px solid #666;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.btn-participate:hover {
    background: #555;
    border-color: #555;
}

.secret-word-input .form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.secret-word-input .form-input:focus {
    outline: none;
    border-color: #666;
    box-shadow: 0 0 0 3px rgba(100, 100, 100, 0.1);
}

.secret-word-input .form-input::placeholder {
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .giveaways-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .giveaway-card {
        padding: 20px;
    }
    
    .giveaway-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .giveaway-join-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .secret-word-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .giveaways-grid {
        gap: 15px;
    }
    
    .giveaway-card {
        padding: 15px;
    }
    
    .giveaway-title {
        font-size: 1.25rem;
    }
    
    .requirements-list {
        gap: 8px;
    }
    
    .requirement-item {
        padding: 8px;
        font-size: 14px;
    }
}