.anime-search-box {
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.search-input, .search-select {
    flex: 1 1 200px;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px;
    background: #1c1c1c;
    color: #ffffffbb;
    font-size: 0.95rem;
    box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.search-input:focus, .search-select:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    background: #292929;
}

.search-select {
    background-image: linear-gradient(135deg, #f33, #dc3545);
    color: #ffffffbb;
    font-weight: bold;
    cursor: pointer;
    appearance: none;
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
}

.search-button {
    background: linear-gradient(45deg, #f33, #dc3545);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}