/* Badge styles */
.header-badges {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(49, 108, 244, 0.08);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    border-left: 2px solid var(--primary-color);
}

.badge i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.icon-check:before {
    content: '✓';
}

.icon-lock:before {
    content: '🔒';
}

.icon-bolt:before {
    content: '⚡';
}

/* Drop zone improvements */
.upload-icon-container {
    background-color: rgba(46, 204, 113, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.drop-subtitle {
    margin: 1rem 0;
    color: var(--text-color);
    opacity: 0.7;
}

.file-types {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* Credit options styling */
.credit-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.credit-option {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border-top: 3px solid var(--primary-color);
}

.credit-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(49, 108, 244, 0.2);
}

.credit-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credit-option .price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.75rem 0;
    color: var(--text-color);
}

.purchase-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(49, 108, 244, 0.2);
}

.purchase-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(49, 108, 244, 0.3);
}
